/**
 * ============================================
 * DISPATCH.CO.IN - MAIN STYLESHEET
 * ============================================
 * 
 * This file contains all styles for the Dispatch.co.in website
 * including layout, components, animations, and responsive design.
 * 
 * @author Dispatch.co.in
 * @version 1.0.0
 * @description Financial Services Landing Page - Fully Responsive
 * ============================================
 */

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

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    color: #374151;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Bootstrap Icons Fix */
.bi, [class^="bi-"], [class*=" bi-"] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container,
.container-fluid {
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

/* Main Container */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}


/* ============================================
   PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
    background: #2563eb;
    color: white;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.promo-banner .container-fluid {
    padding: 0 20px;
}

.promo-banner .row {
    text-align: center;
}

.promo-text {
    color: rgba(255, 255, 255, 0.98);
    margin-right: 8px;
}

.signup-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

.promo-icon {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.9;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    
    border-bottom: none !important;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 0;
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease, top 0.3s ease, border-radius 0.3s ease, margin 0.3s ease, width 0.3s ease;
    will-change: transform, background, padding, top, border-radius, margin, width;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    padding: 12px 0;
    top: 0;
    border-radius: 100px;
    margin: 10px 20px;
    width: calc(100% - 40px);
}

.navbar.scrolled.animate {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.navbar-light {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.navbar-expand-lg {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.navbar-light.navbar-expand-lg {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navbar visibility for non-home pages */
body:not(.home-page) .navbar:not(.scrolled) {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

body:not(.home-page) .navbar:not(.scrolled) .logo-text {
    color: #1f2937 !important;
}

body:not(.home-page) .navbar:not(.scrolled) .navbar-nav .nav-link {
    color: #374151 !important;
}

body:not(.home-page) .navbar:not(.scrolled) .navbar-nav .nav-link:hover {
    color: #2563eb !important;
    background: #f3f4f6 !important;
}

body:not(.home-page) .navbar:not(.scrolled) .btn-outline-primary {
    border-color: #2563eb !important;
    color: #2563eb !important;
    background: #ffffff !important;
}

body:not(.home-page) .navbar:not(.scrolled) .btn-outline-primary:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
}

body:not(.home-page) .navbar:not(.scrolled) .btn-primary {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
}

body:not(.home-page) .navbar:not(.scrolled) .btn-primary:hover {
    background: #1e40af !important;
    border-color: #1e40af !important;
    color: #ffffff !important;
}



.navbar.scrolled .container {
    padding: 0 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    height: 100%;
}

.logo-icon {
    width: auto;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
}

.logo-img {
    width: auto;
    height: 100%;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.navbar:not(.scrolled) .logo-text {
    color: #1f2937;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.navbar-nav .nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

/* Web Story Single Viewer Section */
.story-viewer-section {
    padding: 140px 0 60px; /* clear fixed header */
    background: #111827; /* Dark background for immersive experience */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer-container {
    width: 100%;
    max-width: 500px; /* Mobile-like width on desktop */
    margin: 0 auto;
    padding: 0 15px;
}

.story-viewer-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.story-viewer-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Progress Bar */
.story-progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    z-index: 20;
}

.story-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.story-progress-bar.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    animation: storyProgress 5s linear forwards;
}

.story-progress-bar.completed {
    background: #ffffff;
}

@keyframes storyProgress {
    to { width: 100%; }
}

/* Meta Info */
.story-meta {
    position: absolute;
    top: 24px;
    left: 16px;
    right: 16px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.story-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.story-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0;
}

.story-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Image */
.story-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Content Overlay */
.story-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 80px 20px 40px;
    z-index: 10;
}

.story-text-wrapper {
    color: #ffffff;
    text-align: center;
}

.story-text {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Navigation Buttons */
.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.story-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.story-nav-prev {
    left: 10px;
}

.story-nav-next {
    right: 10px;
}

/* Details Section (Below Viewer) */
.story-details-section {
    padding: 60px 0;
    background: #ffffff;
}

.story-details-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.story-details-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 576px) {
    .story-viewer-section {
        padding-top: 80px; /* Clear header on mobile */
        padding-bottom: 0;
        min-height: 100vh;
        background: #000;
        align-items: flex-start;
    }
    
    .story-viewer-container {
        padding: 0;
        max-width: 100%;
        height: calc(100vh - 80px);
    }
    
    .story-viewer-card {
        border-radius: 0;
        height: 100%;
        aspect-ratio: auto;
    }
    
    .story-nav {
        width: 44px; /* Larger touch target */
        height: 44px;
        background: transparent; /* Cleaner on mobile */
    }
}

/* Removed duplicate - already defined above */

.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    opacity: 0.7;
    color: #374151;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-toggle:hover::after {
    opacity: 1;
}

/* Dropdown toggle active/open state - Blue color when dropdown is open */
.navbar-nav .dropdown-toggle[aria-expanded="true"],
.navbar-nav .dropdown-toggle.show,
.navbar-nav .dropdown.show > .dropdown-toggle {
    color: #2563eb !important;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after,
.navbar-nav .dropdown-toggle.show::after,
.navbar-nav .dropdown.show > .dropdown-toggle::after {
    color: #2563eb;
    opacity: 1;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]:hover,
.navbar-nav .dropdown-toggle.show:hover,
.navbar-nav .dropdown.show > .dropdown-toggle:hover {
    color: #2563eb !important;
    background: #f3f4f6;
}

.btn-outline-primary {
    border: 1.5px solid #2563eb;
    color: #2563eb;
    background: #ffffff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-outline-primary:focus {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.btn-primary {
    background: #2563eb;
    border: 1.5px solid #2563eb;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.navbar:not(.scrolled) .btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.navbar:not(.scrolled) .btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
    color: #ffffff;
}

/* Navbar Toggler (Mobile Menu Button) */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(55, 65, 81, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Navbar Collapse (Mobile Menu) */
.navbar-collapse {
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        margin-top: 0;
    }
}

/* Nav Item Spacing */
.nav-item {
    margin: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section.financial-hero {
  
    background: linear-gradient(to right, 
    #ffffff 0%,
        #ffffff 20%,
        #ffffff 30%,
        #ffffff 50%,
        #ffffff 70%,
        #ffffff 90%,
        #ffffff 100%);
    position: relative;
    padding: 0;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-section .container-fluid {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.hero-section .container-fluid.px-0 {
    padding-left: 20px;
    padding-right: 20px;
}

.hero-section .hero-row {
    margin-left: 0;
    padding: 0;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title-wrapper {
    position: relative;
    min-height: 116px;
    margin-bottom: 30px;
    overflow: visible;
}

.hero-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #141413;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: -0.5px;
}

.hero-title.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-subtitle-wrapper {
    position: relative;
    min-height: 100px;
    margin-top: 0;
    margin-bottom: 30px;
    overflow: visible;
    padding-top: 0;
}

.hero-subtitle {
    font-size: 18px;
    color: #1f2937;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    z-index: 1;
    margin-top: 0;
}

.hero-subtitle.active {
    opacity: 0.95;
    transform: translateY(0);
    pointer-events: auto;
}

.signup-btn {
    background: #2563eb;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.signup-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    color: white;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    color: #1f2937;
    font-size: 18px;
}

.carousel-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(1.05);
    background: #f9fafb;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dash {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dash.active {
    background: rgba(37, 99, 235, 0.3);
    width: 36px;
    height: 5px;
}

.dash.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #2563eb;
    border-radius: 2px;
    animation: progressFill 5s linear forwards;
    z-index: 1;
}

.dash.active.paused::after {
    animation-play-state: paused;
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ============================================
   CARDS & IMAGE CAROUSEL
   ============================================ */
.cards-wrapper {
    position: relative;
  
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;

}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.info-cards-container .carousel-controls {
    margin-top: 20px;
    justify-content: center;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

/* Capital Card */
.capital-card {
    padding: 24px;
}

.capital-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.capital-icon {
    font-size: 32px;
    color: #2563eb;
    flex-shrink: 0;
}

.capital-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* Documents Card */
.documents-card {
    padding: 28px;
}

.amount-display {
    margin: 20px 0 24px;
}

.amount-value {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -1px;
}

.get-funded-btn {
    padding: 14px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 15px;
}

/* Entrepreneur Card */
.entrepreneur-card {
    padding: 24px;
}

.entrepreneur-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.entrepreneur-icon {
    font-size: 32px;
    color: #2563eb;
    flex-shrink: 0;
}

.entrepreneur-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* Credit Meter Card */
.credit-card {
    padding: 28px;
}

.credit-meter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.credit-meter {
    position: relative;
    width: 200px;
    height: 120px;
}

.meter-segment {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 200px 200px 0 0;
    border: 20px solid;
    border-bottom: none;
}

.meter-segment.green {
    border-color: #10b981;
    z-index: 1;
    clip-path: polygon(0 0, 33% 0, 33% 100%, 0 100%);
}

.meter-segment.yellow {
    border-color: #fbbf24;
    z-index: 2;
    clip-path: polygon(33% 0, 66% 0, 66% 100%, 33% 100%);
}

.meter-segment.orange {
    border-color: #f97316;
    z-index: 3;
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 66% 100%);
}

.meter-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: bottom center;
    width: 4px;
    height: 90px;
    background: #1f2937;
    z-index: 10;
    border-radius: 2px;
}

.meter-center {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 11;
}

.credit-label {
    font-size: 11px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.5px;
}

/* Loan Card */
.loan-card {
    padding: 28px;
}

.loan-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loan-field {
    position: relative;
}

.loan-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-right: 40px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    height: 48px;
}

.input-with-icon .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.rupee-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
}

.loan-slider {
    margin-top: 12px;
    height: 6px;
}

.loan-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2563eb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.loan-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #2563eb;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.loan-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

.loan-slider::-moz-range-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

/* Hero Image - Man with Smartphone */
.hero-image {
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 320px;
    height: 450px;
    z-index: 1;
    pointer-events: none;
}

.man-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    min-width: 200px;
    background: #ffffff;
    z-index: 1050;
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #374151;
    position: relative;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #f3f4f6;
    color: #2563eb;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #f3f4f6;
    color: #2563eb;
}

/* Nested Dropdown (Submenu) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 8px;
    min-width: 200px;
    display: none;
}

.dropdown-submenu.show > .dropdown-menu {
    display: block;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(-90deg);
    margin-left: auto;
    margin-right: 0;
    transition: transform 0.2s ease;
}

.dropdown-submenu.show .dropdown-toggle::after {
    transform: rotate(0deg);
}

/* Mobile: Show submenu below */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        margin-left: 20px;
        margin-top: 4px;
        box-shadow: none;
        border-left: 2px solid #e5e7eb;
        display: none;
    }
    
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    
    .dropdown-submenu.show .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

/* Desktop Large (1400px and below) - Large Desktop View */
@media (max-width: 1400px) {
    .hero-title-wrapper {
        min-height: 120px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle-wrapper {
        min-height: 90px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }
    
    .hero-content-wrapper {
        padding: 60px 35px;
    }
    
    .cards-wrapper {
        padding: 60px 35px;
    }
}

/* Desktop (1200px and below) - Laptop View */
@media (max-width: 1200px) {
    .hero-title-wrapper {
        min-height: 110px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle-wrapper {
        min-height: 85px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-content-wrapper {
        padding: 50px 35px;
    }
    
    .cards-wrapper {
        padding: 50px 35px;
    }
    
    .info-cards-container {
        max-width: 100%;
    }
    
    .hero-image {
        width: 280px;
        height: 400px;
        right: 20px;
    }
    
    /* Delivery Section - Laptop */
    .delivery-section {
        padding: 90px 0;
    }
    
    .delivery-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    /* Integration Section - Laptop */
    .integrate-section {
        padding: 0 0 40px;
    }
    
    .integrate-title {
        font-size: 36px;
    }
    
    .integration-circle-area {
        width: 580px;
        height: 280px;
    }
    
    /* Logistics Section - Laptop */
    .logistics-section {
        padding: 90px 0;
    }
    
    .logistics-title {
        font-size: 28px;
    }
}

/* Desktop Medium (1080px and below) - Medium Desktop View */
@media (max-width: 1080px) {
    .hero-title-wrapper {
        min-height: 100px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle-wrapper {
        min-height: 80px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-content-wrapper {
        padding: 50px 30px;
    }
    
    .cards-wrapper {
        padding: 50px 30px;
    }
}


/* Tablet Large (980px and below) - Fix overlap */
@media (max-width: 980px) {
    .hero-title-wrapper {
        min-height: 95px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle-wrapper {
        min-height: 75px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-content-wrapper {
        padding: 50px 25px;
    }
    
    .cards-wrapper {
        padding: 40px 25px;
    }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .partners-track {
        gap: 40px;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 50px;
    }
    .hero-section .hero-row {
        margin-left: 0;
        flex-direction: column;
    }
    
    .hero-section .hero-row > div {
        width: 100%;
    }
    
    .navbar.scrolled {
        margin: 10px 10px;
        width: calc(100% - 20px);
    }
    .hero-section {
        padding: 0;
    }
    
    .hero-content-wrapper {
        padding: 50px 30px;
        text-align: center;
        min-height: auto;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-title-wrapper {
        min-height: 90px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        position: relative;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
    }
    
    .hero-subtitle-wrapper {
        min-height: 75px;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        top: 0;
        position: relative;
    }
    
    .cards-wrapper {
        padding: 40px 30px;
        min-height: auto;
        width: 100%;
    }
    
    .info-cards-container {
        margin: 0 auto;
        max-width: 600px;
    }
    
    .image-carousel {
        height: 350px;
    }
    
    .hero-image {
        display: none;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
}

/* Mobile Large (768px and below) - Mobile View */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 28px;
        line-height: 24px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .partners-track {
        gap: 30px;
        animation-duration: 25s;
    }
    
    .partners-slide {
        padding: 15px;
    }
    
    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }
    .image-carousel {
        height: 400px;
    }
    .promo-banner {
        font-size: 11px;
        padding: 10px 0;
    }
    
    .promo-text {
        display: block;
        margin-bottom: 4px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .logo-icon {
        height: 35px;
    }
    
    .logo-img {
        height: 100%;
        max-width: 120px;
    }
    
    .hero-title-wrapper {
        min-height: 120px;
        margin-bottom: 35px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: -1.5px;
    }
    
    .hero-subtitle-wrapper {
        min-height: 80px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .signup-btn {
        padding: 14px 32px;
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .amount-value {
        font-size: 36px;
    }
    
    .credit-meter {
        width: 160px;
        height: 100px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 16px;
    }
    
    .navbar-nav .btn {
        margin: 8px 0;
        width: 100%;
    }
}

/* ============================================
   PARTNERS LOGO CAROUSEL SECTION
   ============================================ */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.partners-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    overflow: hidden;
}

.partners-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    
    margin-top: 0;
    text-align: center;
    width: 100%;
    
    margin-left: auto;
    margin-right: auto;
}

.partners-title .text-white {
    color: #1e3a8a;
    font-weight: 600;
}

.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: 60px;
    align-items: center;
    width: fit-content;
}

.partners-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: all 0.3s ease;
}

.partners-slide:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.logo-box {
    width: 180px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.partner-logo {
    /* Legacy class kept for compatibility if needed, but logo-box img takes precedence */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

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

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* Mobile Small (576px and below) - Small Mobile View */
@media (max-width: 576px) {
    .hero-section .hero-row {
        margin-left: 0;
    }
    
    .hero-content-wrapper {
        padding: 40px 20px;
    }
    
    .cards-wrapper {
        padding: 40px 20px;
    }
    
    .image-carousel {
        height: 300px;
        border-radius: 16px;
    }
    
    .navbar.scrolled {
        margin: 5px 10px;
        width: calc(100% - 20px);
        border-radius: 50px;
    }
    .hero-title-wrapper {
        min-height: 130px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: -1px;
    }
    
    .hero-subtitle-wrapper {
        min-height: 90px;
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        top: 0;
    }
    
    .info-card {
        padding: 18px;
        border-radius: 16px;
    }
    
    .amount-value {
        font-size: 32px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .dash {
        width: 24px;
        height: 3px;
    }
    
    .dash.active {
        width: 32px;
        height: 4px;
    }
    
    .partners-section {
        padding: 30px 0;
    }
    
    .partners-title {
        font-size: 28px;
        line-height: 22px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .partners-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .partner-logo {
        max-width: 80px;
        max-height: 35px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.why-choose-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #141413;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-choose-description {
    font-size: 18px;
    line-height: 1.8;
    color: #141413;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Styles for Why Choose Section */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-title {
        font-size: 36px;
    }
    
    .why-choose-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .why-choose-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-content {
        padding: 0 20px;
    }
    
    .why-choose-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .why-choose-description {
        font-size: 14px;
    }
}

/* ============================================
   FEATURES TABS SECTION
   ============================================ */
.features-section {
    /* padding: 100px 0; */
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.features-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

/* .features-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
} */

.features-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: #141413;
    margin-bottom: 24px;
    text-align: left;
}

.features-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e5e7eb;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: #2563eb;
}

.tab-button.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.features-content {
    width: 100%;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text {
    position: relative;
    min-height: 400px;
    text-align: left;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.content-top {
    margin-bottom: 40px;
    text-align: left;
}

.content-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #141413;
    margin-bottom: 20px;
    text-align: left;
}

.content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    text-align: left;
}

.content-bottom {
    margin-top: 40px;
    text-align: left;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    text-align: left;
    justify-content: flex-start;
}

.stat-value .number {
    font-size: 64px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.stat-value .percent {
    font-size: 32px;
    font-weight: 600;
    color: #2563eb;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.content-link {
    display: inline-block;
    padding: 3px 15px;
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.content-link:hover {
    background: #2563eb;
    color: #ffffff;
}

.features-image {
    position: relative;
    min-height: 500px;
}

.tab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.tab-image.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive Styles for Features Section */
@media (max-width: 992px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-text {
        min-height: auto;
        text-align: left;
    }
    
    .tab-content {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
        text-align: left;
    }
    
    .tab-content.active {
        display: block;
        text-align: left;
    }
    
    .features-image {
        min-height: 400px;
        order: -1;
    }
    
    .content-title {
        font-size: 28px;
        text-align: left;
    }
    
    .stat-value .number {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .features-tabs {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .stat-value .number {
        font-size: 48px;
    }
    
    .stat-value .percent {
        font-size: 28px;
    }
    
    .features-image {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-button {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
    }
    
    .content-title {
        font-size: 28px;
        text-align: left;
    }
    
    .stat-value .number {
        font-size: 40px;
    }
}

/* ============================================
   DELIVERY FEATURES SECTION
   ============================================ */
.delivery-section {
    
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.delivery-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.delivery-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #141413;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.title-highlight {
    color: #2563eb;
}

.title-text {
    color: #141413;
}

.delivery-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.feature-row {
    margin-bottom: 80px;
}

.feature-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}

.feature-content {
    padding: 40px;
}

.feature-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #141413;
    margin-bottom: 24px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.delivery-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
}

.cta-button:hover {
    background: #1e40af;
    border-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles for Delivery Section */
@media (max-width: 992px) {
    .delivery-section {
        padding: 80px 0;
    }
    
    .delivery-header {
        margin-bottom: 60px;
    }
    
    .delivery-title {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }
    
    .delivery-subtitle {
        font-size: 18px;
    }
    
    .feature-row {
        margin-bottom: 60px;
    }
    
    .feature-row.reverse .row {
        flex-direction: column;
    }
    
    .feature-content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 60px 0;
    }
    
    .delivery-header {
        margin-bottom: 40px;
    }
    
    .delivery-title {
        font-size: 28px;
    }
    
    .delivery-subtitle {
        font-size: 16px;
    }
    
    .feature-row {
        margin-bottom: 40px;
    }
    
    .feature-content {
        padding: 20px 0;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .delivery-cta {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .delivery-section {
        padding: 40px 0;
    }
    
    .delivery-title {
        font-size: 28px;
    }
    
    .delivery-subtitle {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ============================================
   INTEGRATION PLATFORM SECTION
   ============================================ */
.integration-section {
    /* padding: 100px 0; */
    background: #ffffff;
    color: #1f2937;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.integration-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.integration-header {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
}

.integration-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e3a8a !important;
    margin-bottom: 24px;
    display: block;
}

.integration-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #6b7280 !important;
    display: block;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.integration-stats {
    display: flex !important;
    justify-content: center;
    gap: 50px;
    margin: 35px 0;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.integration-stat-item {
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.integration-stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #1e3a8a !important;
    display: block;
    margin-bottom: 8px;
    visibility: visible !important;
}

.integration-stat-label {
    font-size: 16px;
    color: #6b7280 !important;
    display: block;
    visibility: visible !important;
}

.integration-button {
    background: #2563eb !important;
    border: none !important;
    padding: 12px 28px;
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}

.integration-button:hover {
    background: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    color: #ffffff !important;
}

/* ============================================
   GLOBAL POPUP
   ============================================ */
.global-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.global-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.global-popup-container {
    background: white;
    width: 90%;
    max-width: 850px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.27);
    position: relative;
    max-height: 90vh;
}

.global-popup-overlay.show .global-popup-container {
    transform: translateY(0) scale(1);
}

.global-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    color: #64748b;
}

.global-popup-close:hover {
    background: #f1f5f9;
    color: #ef4444;
    transform: rotate(90deg);
}

.global-popup-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
}

.global-popup-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
}

@media (min-width: 768px) {
    .global-popup-image {
        display: block;
    }
}

.global-popup-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.global-popup-header {
    margin-bottom: 24px;
}

.global-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.global-popup-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.global-popup-form .form-group {
    margin-bottom: 16px;
}

.global-popup-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.global-popup-form .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.global-popup-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.global-popup-btn {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.global-popup-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.global-popup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.global-popup-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

.global-popup-success {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.global-popup-success i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 16px;
}

.global-popup-success h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 8px;
}

.global-popup-success p {
    color: #64748b;
}

/* Circular Integration Diagram */
.integration-circle-area {
    position: relative;
    width: 620px;
    height: 290px;
    margin: 120px auto 0;
    max-width: 100%;
}

/* Arcs - Semi-Circles (Top Half) */
.integration-arc {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-bottom: none;
    background: transparent;
    box-sizing: border-box;
}

.integration-arc-outer {
    width: 621px;
    height: 355px;
    border-radius: 310px 310px 0 0;
    bottom: -62px;
    z-index: 1;
}
.integration-arc-middle {
    width: 460px;
    height: 224px;
    border-radius: 235px 235px 0 0;
    bottom: -62px;
    z-index: 2;
}

.integration-arc-inner {
    width: 320px;
    height: 160px;
    border-radius: 160px 160px 0 0;
    bottom: 95px;
}

/* Center Circle - Semi-Circle (Top Half) */
.integration-center-circle {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
   
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
    
    font-size: 16px;
    text-transform: uppercase;
   
    z-index: 10;
    width: 140px;
    height: 70px;
    background: #ffffff;
    border-radius: 70px 70px 0 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.integration-center-circle .logo-img {
    max-width: 80%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Integration Icons */
.integration-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    border: 2px solid #e5e7eb;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-icon:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.integration-icon img {
    width: 60px;
    height: 30px;
    object-fit: contain;
}

/* Arc Animation - Icons move along their semi-circular arc lines */
/* Outer Arc: radius 310px, center (310px, 310px), bottom at 310px */
@keyframes moveOnOuterArc {
    0% {
        left: 0px;
        top: 310px;
    }
    10% {
        left: 48px;
        top: 268px;
    }
    20% {
        left: 120px;
        top: 220px;
    }
    30% {
        left: 200px;
        top: 170px;
    }
    40% {
        left: 270px;
        top: 110px;
    }
    50% {
        left: 310px;
        top: 0px;
    }
    60% {
        left: 350px;
        top: 110px;
    }
    70% {
        left: 420px;
        top: 170px;
    }
    80% {
        left: 500px;
        top: 220px;
    }
    90% {
        left: 572px;
        top: 268px;
    }
    100% {
        left: 620px;
        top: 310px;
    }
}

/* Middle Arc: radius 230px (half of 460px width), center (310px, -45px), bottom at -45px */
@keyframes moveOnMiddleArc {
    0% {
        left: 80px;
        top: 245px;
    }
    10% {
        left: 110px;
        top: 210px;
    }
    20% {
        left: 155px;
        top: 180px;
    }
    30% {
        left: 205px;
        top: 155px;
    }
    40% {
        left: 255px;
        top: 135px;
    }
    50% {
        left: 310px;
        top: 55px;
    }
    60% {
        left: 365px;
        top: 135px;
    }
    70% {
        left: 415px;
        top: 155px;
    }
    80% {
        left: 465px;
        top: 180px;
    }
    90% {
        left: 510px;
        top: 210px;
    }
    100% {
        left: 540px;
        top: 245px;
    }
}

/* Inner Arc: radius 160px, center (310px, 255px), bottom at 255px */
@keyframes moveOnInnerArc {
    0% {
        left: 150px;
        top: 255px;
    }
    10% {
        left: 170px;
        top: 230px;
    }
    20% {
        left: 200px;
        top: 210px;
    }
    30% {
        left: 235px;
        top: 195px;
    }
    40% {
        left: 270px;
        top: 185px;
    }
    50% {
        left: 310px;
        top: 95px;
    }
    60% {
        left: 350px;
        top: 185px;
    }
    70% {
        left: 385px;
        top: 195px;
    }
    80% {
        left: 420px;
        top: 210px;
    }
    90% {
        left: 450px;
        top: 230px;
    }
    100% {
        left: 470px;
        top: 255px;
    }
}

/* Icon Positions - Will be controlled by JavaScript */
.integration-icon-1,
.integration-icon-2,
.integration-icon-3,
.integration-icon-4,
.integration-icon-5 {
    will-change: transform;
    transition: transform 0.1s linear;
}

.integration-icon-6,
.integration-icon-7,
.integration-icon-8 {
    will-change: transform, left, top;
    transition: transform 0.1s linear;
    position: absolute;
    /* Initial position - will be animated by JavaScript along middle arc */
    /* Start position on middle arc (right side) - icons rotate right to left */
    left: 540px;
    top: 360px;
    transform: translate(-50%, -50%);
    z-index: 6;
}

/* Responsive Styles for Integration Section */
@media (max-width: 992px) {
    .integrate-section {
        padding: 70px 0 100px;
    }
    
    .integrate-title {
        font-size: 32px;
    }
    
    .integration-stats {
        gap: 40px;
    }
    
    .integration-stat-number {
        font-size: 24px;
    }
    
    .integration-circle-area {
        width: 100%;
        max-width: 500px;
        height: 300px;
        margin: 70px auto 0;
    }
    
    .integration-arc-outer {
        width: 500px;
        height: 250px;
        border-radius: 250px 250px 0 0;
    }
    
    .integration-arc-middle {
        width: 380px;
        height: 190px;
        border-radius: 190px 190px 0 0;
    }
    
    .integration-arc-inner {
        width: 260px;
        height: 260px;
    }
    
    .integration-center-circle {
        width: 130px;
        height: 65px;
        border-radius: 65px 65px 0 0;
        font-size: 14px;
    }
    
    .integration-icon {
        width: 40px;
        height: 40px;
    }
    
    .integration-icon img {
        width: 20px;
        height: 20px;
    }
    
    .integration-icon-1 {
        top: -10px;
        left: 130px;
    }
    
    .integration-icon-2 {
        top: -10px;
        right: 130px;
    }
    
    .integration-icon-3 {
        top: 70px;
        left: 30px;
    }
    
    .integration-icon-4 {
        top: 70px;
        right: 30px;
    }
    
    .integration-icon-5 {
        bottom: 100px;
        left: 120px;
    }
    
    .integration-icon-6 {
        bottom: 100px;
        right: 120px;
    }
}

@media (max-width: 768px) {
    .integrate-section {
        padding: 60px 0 80px;
    }
    
    .integrate-title {
        font-size: 28px;
    }
    
    .integrate-subtitle {
        font-size: 16px;
    }
    
    .integration-stats {
        gap: 30px;
        margin: 25px 0;
    }
    
    .integration-stat-number {
        font-size: 22px;
    }
    
    .integration-stat-label {
        font-size: 14px;
    }
    
    .integration-circle-area {
        width: 100%;
        max-width: 400px;
        height: 250px;
        margin: 80px auto 0;
    }
    
    .integration-arc-outer {
        width: 400px;
        height: 200px;
        border-radius: 200px 200px 0 0;
    }
    
    .integration-arc-middle {
        width: 300px;
        height: 150px;
        border-radius: 150px 150px 0 0;
    }
    
    .integration-arc-inner {
        width: 200px;
        height: 200px;
    }
    
    .integration-center-circle {
        width: 110px;
        height: 55px;
        border-radius: 55px 55px 0 0;
        font-size: 12px;
        bottom: -35px;
    }
    
    .integration-icon {
        width: 36px;
        height: 36px;
    }
    
    .integration-icon img {
        width: 18px;
        height: 18px;
    }
    
    .integration-icon-1 {
        top: -8px;
        left: 100px;
    }
    
    .integration-icon-2 {
        top: -8px;
        right: 100px;
    }
    
    .integration-icon-3 {
        top: 60px;
        left: 20px;
    }
    
    .integration-icon-4 {
        top: 60px;
        right: 20px;
    }
    
    .integration-icon-5 {
        bottom: 80px;
        left: 100px;
    }
    
    .integration-icon-6 {
        bottom: 80px;
        right: 100px;
    }
}

@media (max-width: 576px) {
    .integrate-section {
        padding: 50px 0 60px;
    }
    
    .integrate-title {
        font-size: 24px;
    }
    
    .integrate-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .integration-stats {
        flex-direction: column;
        gap: 25px;
        margin: 20px 0;
    }
    
    .integration-stat-number {
        font-size: 20px;
    }
    
    .integration-stat-label {
        font-size: 13px;
    }
    
    .integration-button {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .integration-circle-area {
        width: 100%;
        max-width: 320px;
        height: 200px;
        margin: 60px auto 0;
    }
    
    .integration-arc-outer {
        width: 320px;
        height: 160px;
        border-radius: 160px 160px 0 0;
    }
    
    .integration-arc-middle {
        width: 240px;
        height: 120px;
        border-radius: 120px 120px 0 0;
    }
    
    .integration-arc-inner {
        width: 160px;
        height: 80px;
        border-radius: 80px 80px 0 0;
    }
    
    .integration-center-circle {
        width: 90px;
        height: 45px;
        border-radius: 45px 45px 0 0;
        font-size: 11px;
        bottom: -30px;
    }
    
    .integration-icon {
        width: 32px;
        height: 32px;
    }
    
    .integration-icon img {
        width: 16px;
        height: 16px;
    }
    
    .integration-icon-1 {
        top: -5px;
        left: 80px;
    }
    
    .integration-icon-2 {
        top: -5px;
        right: 80px;
    }
    
    .integration-icon-3 {
        top: 50px;
        left: 15px;
    }
    
    .integration-icon-4 {
        top: 50px;
        right: 15px;
    }
    
    .integration-icon-5 {
        bottom: 60px;
        left: 80px;
    }
    
    .integration-icon-6 {
        bottom: 60px;
        right: 80px;
    }
}

/* ============================================
   LOGISTICS INTELLIGENCE TABS SECTION
   ============================================ */
.logistics-section {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.logistics-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.logistics-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.logistics-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #141413;
    margin: 0;
}

.logistics-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e5e7eb;
}

.logistics-tab {
    background: transparent;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.logistics-tab:hover {
    color: #2563eb;
}

.logistics-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.logistics-panels {
    position: relative;
    min-height: 500px;
}

.logistics-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.logistics-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.logistics-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logistics-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.logistics-content {
    position: absolute;
    top: 50px;
    left: 50px;
    right: auto;
    bottom: 50px;
    width: auto;
    max-width: 40%;
    min-width: 500px;
    height: fit-content;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.logistics-heading {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #1f2937;
    margin-bottom: 24px;
}

.logistics-bottom {
    margin-top: 0;
}

.logistics-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.logistics-quote {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.quote-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.logistics-text {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    font-style: normal;
}

.logistics-button {
    margin-top: 30px;
}

.logistics-link {
    display: inline-block;
    padding: 14px 32px;
    background: #e5e7eb;
    border: none;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logistics-link:hover {
    background: #d1d5db;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles for Logistics Section */
@media (max-width: 992px) {
    .logistics-section {
        padding: 80px 0;
    }
    
    .logistics-title {
        font-size: 28px;
    }
    
    .logistics-nav {
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .logistics-tab {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .logistics-image {
        height: 500px;
    }
    
    .logistics-content {
        top: 40px;
        left: 40px;
        right: auto;
        bottom: 40px;
        max-width: 50%;
        min-width: 450px;
        width: auto;
        height: fit-content;
        padding: 40px 35px;
        border-radius: 12px;
    }
    
    .logistics-heading {
        font-size: 28px;
    }
    
    .logistics-panels {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .logistics-section {
        padding: 60px 0;
    }
    
    .logistics-header {
        margin-bottom: 40px;
    }
    
    .logistics-title {
        font-size: 28px;
    }
    
    .logistics-nav {
        gap: 12px;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .logistics-tab {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .logistics-panel {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }
    
    .logistics-panel.active {
        display: block;
    }
    
    .logistics-panels {
        min-height: auto;
    }
    
    .logistics-image {
        height: 400px;
    }
    
    .logistics-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        max-width: calc(100% - 40px);
        height: fit-content;
        padding: 30px 24px;
        margin: 20px;
        border-radius: 12px;
        text-align: left;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .logistics-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .logistics-brand {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .logistics-quote {
        padding-left: 16px;
        margin-bottom: 24px;
    }
    
    .quote-line {
        width: 2px;
    }
    
    .logistics-text {
        font-size: 16px;
    }
    
    .logistics-link {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .logistics-section {
        padding: 50px 0;
    }
    
    .logistics-title {
        font-size: 28px;
    }
    
    .logistics-nav {
        gap: 8px;
    }
    
    .logistics-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .logistics-image {
        height: 350px;
    }
    
    .logistics-content {
        width: auto;
        max-width: calc(100% - 30px);
        height: fit-content;
        padding: 24px 20px;
        margin: 15px;
        border-radius: 10px;
    }
    
    .logistics-heading {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .logistics-brand {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .logistics-quote {
        padding-left: 14px;
        margin-bottom: 20px;
    }
    
    .quote-line {
        width: 2px;
    }
    
    .logistics-text {
        font-size: 15px;
    }
    
    .logistics-link {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-header {
    margin-bottom: 60px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #141413;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0;
}

.about-content {
    margin-top: 50px;
}

.about-text {
    padding-right: 40px;
}

.about-heading {
    font-size: 32px;
    font-weight: 600;
    color: #141413;
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-heading {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-heading {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ============================================
   STANDARD PAGE SECTIONS (8-Section Layout)
   ============================================ */

/* Page Hero Section */
.page-hero-section {
    padding: 150px 0 80px;
    background: #ffffff;
}

.page-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.page-content-section.bg-light {
    background: #f8fafc;
}

.page-content-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-content-section .section-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-content-section .section-text:last-child {
    margin-bottom: 0;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 28px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Step Cards */
.step-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  
    font-size: 24px;
    font-weight: 700;
}

.step-number i {
    font-size: 28px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Items */
.benefit-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Use Case Cards */
.use-case-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.use-case-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.use-case-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Tech Card */
.tech-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tech-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}

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

.feature-list li {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Page CTA Section */
.page-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
}

.page-cta-section .cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-cta-section .cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #2563eb;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.cta-buttons .btn-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Page Sections */
@media (max-width: 992px) {
    .page-hero-section {
        padding: 120px 0 60px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .page-content-section {
        padding: 60px 0;
    }
    
    .page-content-section .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 100px 0 50px;
    }
    
    .page-hero-title {
        font-size: 24px;
    }
    
    .page-content-section {
        padding: 50px 0;
    }
    
    .page-content-section .section-title {
        font-size: 24px;
    }
    
    .feature-card,
    .step-card,
    .benefit-item,
    .use-case-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .page-cta-section .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #141413;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0;
}

.contact-content {
    margin-top: 50px;
}

.contact-info {
    padding-right: 40px;
}

.contact-heading {
    font-size: 28px;
    font-weight: 600;
    color: #141413;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 18px;
    color: #141413;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.contact-value:hover {
    color: #2563eb;
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-submit {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles for Contact Section */
@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
    
    .contact-heading {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* ============================================
   ECOMMERCE COURIERS SECTION
   ============================================ */

.couriers-section {
    
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.couriers-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.couriers-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.couriers-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.3;
    margin: 0;
}

.couriers-highlight {
    color: #1e3a8a;
    display: inline;
}

.couriers-carousels {
    margin-bottom: 50px;
    position: relative;
}

.couriers-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.couriers-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.couriers-track {
    display: flex;
    gap: 40px;
    width: fit-content;
    animation: scrollMarquee 30s linear infinite;
    will-change: transform;
}

.couriers-carousel-reverse .couriers-track {
    animation: scrollMarqueeReverse 30s linear infinite;
}

.couriers-slide {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.couriers-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.couriers-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    border-color: #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.couriers-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.couriers-cta {
    margin-top: 50px;
}

.couriers-cta .btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    background: #2563eb;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.couriers-cta .btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Marquee Animation */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollMarqueeReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .couriers-title {
        font-size: 28px;
    }
    
    .couriers-slide {
        width: 180px;
    }
    
    .couriers-track {
        gap: 30px;
    }
    
    .couriers-logo {
        height: 90px;
    }
}

@media (max-width: 992px) {
    .couriers-section {
        padding: 80px 0;
    }
    
    .couriers-title {
        font-size: 28px;
    }
    
    .couriers-slide {
        width: 160px;
    }
    
    .couriers-logo {
        height: 80px;
        padding: 12px;
    }
    
    .couriers-track {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .couriers-section {
        padding: 60px 0;
    }
    
    .couriers-header {
        margin-bottom: 40px;
    }
    
    .couriers-title {
        font-size: 28px;
    }
    
    .couriers-highlight {
        margin-top: 8px;
    }
    
    .couriers-slide {
        width: 140px;
    }
    
    .couriers-logo {
        height: 70px;
        padding: 10px;
    }
    
    .couriers-track {
        gap: 20px;
    }
    
    .couriers-cta {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .couriers-section {
        padding: 50px 0;
    }
    
    .couriers-title {
        font-size: 28px;
    }
    
    .couriers-slide {
        width: 120px;
    }
    
    .couriers-logo {
        height: 60px;
        padding: 8px;
    }
    
    .couriers-track {
        gap: 15px;
    }
    
    .couriers-cta .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ============================================
   INTEGRATION STEPS SECTION
   ============================================ */

.integrate-section {
    /* padding: 50px 0; */
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.integrate-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.integrate-header {
    /* margin-bottom: 60px; */
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.integrate-title {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.3;
    margin: 0;
    padding: 30px 0;
}

.integrate-highlight {
    color: #6b7280;
    display: block;
    margin-top: 10px;
    font-size: 16px;
}
/* 
.integrate-wrapper {
    margin-bottom: 100px;
} */

.integrate-wrapper:last-child {
    margin-bottom: 0;
}

.integrate-tabs-wrapper {
    padding: 20px;
}

.integrate-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: left;
}

.integrate-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.integrate-tab {
    cursor: pointer;
    transition: all 0.3s ease;
}

.integrate-tab.active {
    font-weight: 700;
}

.integrate-tab.active .integrate-step {
    font-weight: 700;
    transform: scale(1.1);
}

.integrate-tab.active .integrate-desc {
    font-weight: 600;
    color: #1e3a8a;
}







.integrate-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.integrate-step-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
}

.integrate-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.integrate-tab.active .integrate-step {
    background: #b91c1c;
    transform: scale(1.1);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.integrate-line {
    width: 0;
    height: calc(100% + 20px);
    border-left: 2px dashed #d1d5db;
    margin-top: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    min-height: 60px;
}

.integrate-tab:last-child .integrate-line {
    display: none;
}

.integrate-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}

.integrate-tab.active .integrate-desc {
    font-weight: 600;
    color: #1e3a8a;
}

.integrate-tab.active .integrate-desc {
    font-weight: 600;
    color: #1e3a8a;
}

.integration-description strong {
    color: #1f2937;
    font-weight: 600;
}

.integration-tab.active .integrate-desc {
    color: #1f2937;
}

.integrate-cta {
    margin-top: 30px;
}

.integration-cta .btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    background: #1e3a8a;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.integration-cta .btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.integrate-images {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.integrate-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1;
}

.integrate-img.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.integrate-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

/* Reverse layout for API Integration */
/* .integrate-reverse {
    margin-top: 80px;
} */

/* Responsive Styles */
@media (max-width: 1200px) {
    .integrate-title {
        font-size: 36px;
    }
    
    .integrate-subtitle {
        font-size: 24px;
    }
    
    .integrate-images {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .integrate-section {
        padding: 80px 0;
    }
    
    .integrate-header {
        margin-bottom: 60px;
    }
    
    .integrate-title {
        font-size: 32px;
    }
    
    .integrate-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .integrate-wrapper {
        margin-bottom: 60px;
    }
    
    .integrate-reverse {
        margin-top: 60px;
    }
    
    .integrate-images {
        height: 400px;
        margin-top: 30px;
    }
    
    .integrate-tabs {
        gap: 15px;
    }
    
    .integrate-tab {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .integrate-section {
        padding: 60px 0;
    }
    
    .integrate-header {
        margin-bottom: 50px;
    }
    
    .integrate-title {
        font-size: 28px;
    }
    
    .integrate-highlight {
        margin-top: 8px;
    }
    
    .integrate-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .integrate-wrapper {
        margin-bottom: 50px;
    }
    
    .integrate-reverse {
        margin-top: 50px;
    }
    
    .integrate-tabs-wrapper {
        padding: 15px;
    }
    
    .integrate-tabs {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .integrate-tab {
        padding: 15px;
    }
    
    .integrate-content {
        gap: 15px;
    }
    
    .integrate-step {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .integrate-desc {
        font-size: 15px;
    }
    
    .integrate-images {
        height: 350px;
        margin-top: 25px;
    }
    
    .integrate-cta {
        margin-top: 25px;
    }
    
    .integrate-cta .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .integrate-section {
        padding: 50px 0;
    }
    
    .integrate-title {
        font-size: 24px;
    }
    
    .integrate-subtitle {
        font-size: 18px;
    }
    
    .integrate-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .integrate-step-wrap {
        align-self: flex-start;
    }
    
    .integrate-step {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .integrate-line {
        min-height: 50px;
    }
    
    .integrate-desc {
        font-size: 14px;
    }
    
    .integrate-images {
        height: 300px;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: auto;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.footer-logo .logo-img {
    width: auto;
    height: 100%;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    color: #60a5fa;
    font-size: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #60a5fa;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Footer Column Alignment */
.footer-section .row {
    align-items: flex-start;
}

.footer-section .col-lg-2,
.footer-section .col-lg-3 {
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 30px;
    }
}

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

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    font-size: 18px;
    color: inherit;
}

.social-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link:hover i {
    color: #ffffff;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-section {
        padding: 50px 0 25px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-logo .logo-text {
        font-size: 20px;
    }

    .footer-logo .logo-icon {
        height: 35px;
    }
    
    .footer-logo .logo-img {
        height: 100%;
        max-width: 120px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }

    .copyright-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 15px;
    }

    .footer-title {
        font-size: 15px;
    }

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

    .footer-links a {
        font-size: 12px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */


.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.faq-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    user-select: none;
}





.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    order: 2;
    pointer-events: none;
}

.faq-icon i {
    pointer-events: none;
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    font-size: 20px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.faq-icon-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    line-height: 1.5;
    order: 1;
}

.faq-item.active .faq-question {
    color: #2563eb;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 24px;
    background: #ffffff;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 2000px;
    padding: 20px 72px 20px 24px;
    opacity: 1;
    overflow: visible;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-header {
        padding: 16px 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 60px 16px 20px;
    }
    
    .faq-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-header {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon-plus,
    .faq-icon-minus {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-item.active .faq-content {
        padding: 0 52px 14px 16px;
    }
    
    .faq-content p {
        font-size: 14px;
    }
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.solutions-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.solutions-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.solutions-title-highlight {
    color: #2563eb;
}

.solutions-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.solutions-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}

.solution-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
}

.solution-card:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.solution-icon {
    flex-shrink: 0;
    width: 66px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 100%;
    height: auto;
}

.solution-content {
    flex: 1;
}

.solution-title {
    font-size: 26px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.4;
}

.solution-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.solution-link {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.solutions-image {
    flex: 1;
    min-width: 300px;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive Solutions Section */
@media (max-width: 992px) {
    .solutions-section {
        padding: 80px 0;
    }
    
    .solutions-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .solutions-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .solutions-grid {
        width: 100%;
    }
    
    .solutions-image {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .solution-card {
        padding: 20px;
        gap: 15px;
    }
    
    .solution-icon {
        width: 50px;
    }
    
    .solution-title {
        font-size: 28px;
    }
    
    .solution-desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .solutions-section {
        padding: 50px 0;
    }
    
    .solutions-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .solutions-grid {
        gap: 20px;
    }
    
    .solution-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .solution-icon {
        width: 50px;
        margin: 0 auto;
    }
    
    .solution-title {
        font-size: 28px;
    }
    
    .solution-desc {
        font-size: 14px;
    }
}

/* ============================================
   CONTACT & LOCATION SECTION
   ============================================ */
.contact-location-section {
    /* padding: 100px 0; */
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-location-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    overflow: hidden;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 0;
}

.contact-form-title {
    font-size: 26px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form-simple {
    margin-top: 0;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: sans-serif;
    color: #1f2937;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    width: 100%;
    background: #2563eb;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-contact-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info-wrapper {
    padding-left: 0;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    display: block;
    line-height: 1.6;
}

.contact-info-value:hover {
    color: #2563eb;
}

/* Contact Map */
.contact-map-wrapper {
    margin-top: 32px;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
    border-radius: 12px;
}

/* Responsive Map */
@media (max-width: 768px) {
    .contact-map-wrapper {
        margin-top: 24px;
    }
    
    .contact-map iframe {
        height: 220px;
    }
}

.form-message {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

/* Responsive Contact & Location Section */
@media (max-width: 992px) {
    .contact-location-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .contact-info-wrapper {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-info-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-location-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-form-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-info-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        margin-bottom: 24px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-info-value {
        font-size: 16px;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .btn-contact-submit {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ============================================
   DOMESTIC SHIPPING PAGE STYLES
   ============================================ */

/* Highlight Cards Hover Effect */
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* Service Cards Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border-color: #2563eb !important;
}

/* Step Cards Hover Effect */
.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4) !important;
}

/* Testimonial Cards Hover Effect */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* FAQ Items Hover Effect */
.faq-item:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

/* Smooth Transitions */
.highlight-card,
.service-card,
.step-card,
.testimonial-card,
.faq-item {
    transition: all 0.3s ease;
}

.step-number {
    transition: all 0.3s ease;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Reliable Cards Hover Effect */
.reliable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border-color: #2563eb !important;
}

/* Mission & Vision Cards Hover Effect */
.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* Smooth Transitions */
.reliable-card,
.mission-card,
.vision-card {
    transition: all 0.3s ease;
}

/* ============================================

   ============================================ */

/* Trust Cards Hover Effect */
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* User Type Items Hover Effect */
.user-type-item:hover {
    transform: translateX(5px);
}

/* Smooth Transitions */
.trust-card,
.user-type-item,
.safety-item {
    transition: all 0.3s ease;
}

/* ============================================
   SAME DAY DELIVERY - UNIQUE STYLING
   ============================================ */

/* Trust Badge Cards Hover */
.trust-badge-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255,107,107,0.2) !important;
    border-color: #ff6b6b !important;
}

/* Feature Box Modern Hover */
.feature-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255,107,107,0.15) !important;
    border-color: #ff6b6b !important;
}

/* User Type Card Hover */
.user-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255,107,107,0.15) !important;
    border-color: #ff6b6b !important;
}

/* Timeline Step Hover */
.timeline-step:hover .step-circle {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(255,107,107,0.4) !important;
}

/* Button Hover Effects */
.btn-hero-primary:hover,
.btn-modern-primary:hover,
.btn-pricing-cta:hover,
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,107,107,0.5) !important;
}

.btn-hero-secondary:hover,
.btn-cta-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1) !important;
}

/* Smooth Transitions */
.trust-badge-card,
.feature-box-modern,
.user-type-card,
.timeline-step,
.step-circle,
.btn-hero-primary,
.btn-hero-secondary,
.btn-modern-primary,
.btn-pricing-cta,
.btn-cta-primary,
.btn-cta-secondary {
    transition: all 0.3s ease;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Hero Section */
.about-hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    
}

.hero-banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section .hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.about-hero-section .hero-subtitle {
    font-size: 22px;
    color: #374151;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

/* Company Introduction Section */
.company-intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.company-intro-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.company-intro-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.company-intro-section .section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.company-intro-section .section-text:last-child {
    margin-bottom: 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.what-we-do-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.what-we-do-section .section-subtitle {
    font-size: 18px;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 56px;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-text {
    font-size: 16px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-us-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.why-choose-us-section .section-subtitle {
    font-size: 18px;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-text {
    font-size: 16px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 20px;
    color: #1f2937;
    font-weight: 600;
}

/* Mission, Vision & Values Section */
.mission-vision-values-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-card,
.vision-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e5e7eb;
}

.mission-icon,
.vision-icon {
    font-size: 56px;
    color: #2563eb;
    margin-bottom: 24px;
}

.mission-title,
.vision-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.mission-text,
.vision-text {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.values-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.values-icon {
    font-size: 56px;
    color: #2563eb;
    margin-bottom: 24px;
}

.values-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 16px;
}

.value-name {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-desc {
    font-size: 16px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #e5e7eb;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.cta-buttons .btn-outline-primary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cta-buttons .btn-outline-primary:hover {
    transform: translateY(-2px);
    background: #2563eb;
    color: #ffffff;
}

/* About Us Page Responsive Styles */
@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-overlay {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .about-hero-section .hero-title {
        font-size: 36px;
    }
    
    .about-hero-section .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .mission-title,
    .vision-title,
    .values-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .service-card,
    .feature-card,
    .mission-card,
    .vision-card,
    .values-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .hero-overlay {
        background: rgba(255, 255, 255, 0.92);
    }
    
    .about-hero-section .hero-title {
        font-size: 28px;
    }
    
    .about-hero-section .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   DOMESTIC SHIPPING PAGE STYLES
   ============================================ */

/* Typography System */
.domestic-hero-section,
.domestic-about-section,
.domestic-services-section,
.coverage-section,
.why-choose-section,
.ecommerce-section,
.how-it-works-section,
.pricing-cta-section,
.testimonials-section,
.faq-section,
.domestic-final-cta-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.domestic-hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #e5e7eb;
}

.domestic-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.domestic-hero-section .hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0;
}

.domestic-hero-section .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.domestic-hero-section .hero-buttons .btn {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
}

.domestic-hero-section .hero-buttons .btn-primary {
    font-weight: 600;
}

.domestic-hero-section .hero-buttons .btn-light {
    font-weight: 600;
}

.domestic-hero-section .hero-image {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.domestic-hero-section .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.domestic-about-section img,
.why-choose-section img,
.ecommerce-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.coverage-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.pricing-cta-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.how-it-works-section .process-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


/* Quick Highlights Section */
.quick-highlights-section {
    padding: 80px 0;
    background: #ffffff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.highlight-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.highlight-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.highlight-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

/* About Section */
.domestic-about-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.domestic-about-section .row {
    align-items: center;
}

.domestic-about-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.domestic-about-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.domestic-about-section .section-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0;
}

.domestic-about-section .section-text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.domestic-services-section {
    padding: 100px 0;
    background: #ffffff;
}

.domestic-services-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.domestic-services-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0;
}

.domestic-service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.domestic-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #2563eb;
}

.domestic-service-icon {
    font-size: 56px;
    color: #2563eb;
    margin-bottom: 20px;
}

.domestic-service-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.domestic-service-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

/* Coverage Section */
.coverage-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.coverage-section .row {
    align-items: center;
}

.coverage-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.coverage-section .section-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0;
}

.coverage-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.coverage-stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    letter-spacing: -1px;
}

.coverage-stat-item .stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin-top: 8px;
    line-height: 1.4;
    letter-spacing: 0;
}

.coverage-image {
    position: relative;
    text-align: center;
}

.coverage-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.why-choose-section .row {
    align-items: center;
}

.why-choose-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.why-choose-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.usp-icon {
    font-size: 24px;
    color: #2563eb;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.usp-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.usp-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

/* Ecommerce Section */
.ecommerce-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.ecommerce-section .row {
    align-items: center;
}

.ecommerce-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ecommerce-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.feature-icon {
    font-size: 24px;
    color: #2563eb;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.how-it-works-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.how-it-works-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.1px;
}

.step-text {
    font-size: 15px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0;
}

.how-it-works-section .process-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
}

.pricing-cta-section .row {
    align-items: center;
}

.pricing-cta-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-cta-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pricing-cta-section .section-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
    letter-spacing: 0;
}

.pricing-cta-section .btn {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.testimonials-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.testimonials-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e5e7eb;
}

.testimonial-rating {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}



.faq-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.faq-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0;
}


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

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.faq-question i {
    color: #2563eb;
    margin-right: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0;
}

/* Final CTA Section */
.domestic-final-cta-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #e5e7eb;
}

.domestic-final-cta-section .cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.domestic-final-cta-section .cta-text {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0;
}

.domestic-final-cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.domestic-final-cta-section .cta-buttons .btn {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
}


/* Domestic Shipping Page Responsive Styles */
@media (max-width: 768px) {
    .domestic-hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .domestic-hero-section .hero-title {
        font-size: 36px;
    }
    
    .domestic-hero-section .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .coverage-section .section-title,
    .pricing-cta-section .section-title {
        font-size: 32px;
    }
    
    .domestic-final-cta-section .cta-title {
        font-size: 32px;
    }
    
    .coverage-stat-item .stat-number {
        font-size: 36px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .domestic-hero-section .hero-title {
        font-size: 28px;
    }
    
    .domestic-hero-section .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .domestic-hero-section .hero-buttons {
        flex-direction: column;
    }
}

/* ============================================
   CONTACT PAGE PROFESSIONAL SECTIONS
   ============================================ */

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Office Locations Section */
.office-locations-section {
    padding: 80px 0;
}

.office-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.office-icon-wrapper {
    margin-bottom: 24px;
}

.office-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    font-size: 28px;
}

.office-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.office-address {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
}

.office-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.office-link:hover {
    color: #1e40af;
    transform: translateX(4px);
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
}

.hours-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.hours-day-wrapper {
    display: flex;
    align-items: center;
    color: #1f2937;
    font-weight: 600;
    font-size: 16px;
}

.hours-day-wrapper i {
    color: #2563eb;
    font-size: 20px;
}

.hours-time {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 0;
}

.quick-contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.quick-contact-icon-wrapper {
    margin-bottom: 24px;
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    font-size: 28px;
}

.quick-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.quick-contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-contact-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* FAQ Section */


/* FAQ Section */
.faq-section {
    background-color: #f8fafc;
}

.faq-container {
    /* background: #ffffff; */
    border-radius: 16px;
    padding: 40px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid #545454; */
}

.faq-container .accordion-item {
    border: none !important;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-container .accordion-button {
    background-color: #fff;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none !important;
    box-shadow: none;
    position: relative;
}

.faq-container .accordion-button:not(.collapsed) {
    color: #2563eb;
    background-color: #eff6ff;
}

.faq-container .accordion-button:focus {
    box-shadow: none;
    border: none !important;
}

.faq-container .accordion-button::after {
    display: none;
}

.faq-container .accordion-button::before {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: #2563eb;
    transition: transform 0.3s ease, content 0.3s ease;
    line-height: 1;
}

.faq-container .accordion-button:not(.collapsed)::before {
    content: '−';
    transform: rotate(0deg);
}

.faq-container .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item {
    
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.faq-icon {
    color: #2563eb;
    font-size: 24px;
    margin-right: 12px;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.faq-answer {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding-left: 36px;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.social-link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: #ffffff;
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 24px;
}

.social-link-item span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Styles for Contact Sections */
@media (max-width: 768px) {
    .office-card,
    .quick-contact-card {
        padding: 30px 20px;
    }
    
    .hours-card,
    .faq-container {
        padding: 30px 20px;
    }
    
    .social-media-links {
        gap: 16px;
    }
    
    .social-link-item {
        min-width: 100px;
        padding: 20px 24px;
    }
    
    .faq-answer {
        padding-left: 0;
    }
}

/* ============================================
   CONTACT PAGE - ALL 10 SECTIONS STYLING
   ============================================ */

/* 1️⃣ Contact Hero Section */
.contact-hero-section {
    padding: 150px 0 80px;
    background: #ffffff;
    color: #1f2937;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.contact-hero-section::before {
    display: none;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.contact-hero-subtitle {
    font-size: 22px;
    color: #6b7280;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* 2️⃣ Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 28px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.contact-info-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* 3️⃣ Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-content {
    padding-right: 30px;
}

.contact-form-content .section-badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.contact-form-content .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-form-content .section-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-box {
    margin-top: 30px;
}

.info-box-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-icon i {
    font-size: 24px;
    color: #fff;
}

.info-box-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.info-box-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.contact-cta-box {
    background: #2563eb;
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    margin-top: 30px;
}

.contact-cta-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.contact-cta-box .btn {
    background: #ffffff;
    color: #2563eb;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-cta-box .btn:hover {
    background: #f3f4f6;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.contact-form .form-control select {
    cursor: pointer;
}

.contact-submit {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Contact Form Section Responsive */
@media (max-width: 992px) {
    .contact-form-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-content .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-content .section-title {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .info-box-item {
        padding: 15px;
    }
    
    .contact-cta-box {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-content .section-title {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .info-box-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .info-box-icon {
        margin: 0 auto;
    }
    
    .contact-cta-box {
        padding: 20px 15px;
        text-align: center;
    }
    
    .contact-cta-box .btn {
        width: 100%;
    }
}

/* 4️⃣ Quick Services Section */
.quick-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.quick-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 24px;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* 5️⃣ Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.map-wrapper iframe,
.contact-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

.contact-map-iframe {
    position: relative;
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 16px;
}

/* 6️⃣ Trust Section */
.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 28px;
}

.trust-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.trust-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* 7️⃣ CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 8️⃣ Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: #ffffff;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1f2937;
    padding: 24px 32px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    min-width: 120px;
}

.social-link-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-4px);
    color: #ffffff;
    border-color: transparent;
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 24px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.social-link-item:hover .social-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.social-link-item span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 9️⃣ Branches Section */
.branches-section {
    padding: 80px 0;
}

.branch-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.branch-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.branch-address {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.coverage-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.coverage-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.coverage-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

/* 🔟 FAQ Section (Already exists, but ensuring consistency) */


/* Responsive Styles */
@media (max-width: 992px) {
    .contact-hero-section {
        padding: 120px 0 60px;
        min-height: 250px;
    }
    
    .contact-hero-title {
        font-size: 42px;
    }
    
    .contact-hero-subtitle {
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0 50px;
        min-height: 200px;
    }
    
    .contact-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        padding: 0 15px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-card,
    .trust-card {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .social-media-links {
        gap: 16px;
    }
    
    .social-link-item {
        min-width: 100px;
        padding: 20px 24px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper {
        padding-bottom: 75%; /* Taller on mobile */
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 80px 0 40px;
        min-height: 180px;
    }
    
    .contact-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .contact-hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .map-section {
        padding: 50px 0;
    }
    
    .map-wrapper {
        padding-bottom: 100%; /* Even taller on small screens */
        border-radius: 12px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .domestic-hero-section .hero-buttons .btn {
        width: 100%;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .domestic-final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .domestic-final-cta-section .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   404 ERROR PAGE STYLES
   ============================================ */
.error-page-section {
    padding: 150px 0 100px;
    background: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(37, 99, 235, 0.1);
}

.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.error-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-actions .btn-primary {
    background: #2563eb;
    border: none;
    color: #ffffff;
}

.error-actions .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.error-actions .btn-outline-primary {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.error-actions .btn-outline-primary:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.error-suggestions {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

/* ============================================
   ABOUT US PAGE - NEW SECTIONS STYLING
   ============================================ */

/* Page Title Area (Breadcrumb) */
.page-title-area {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
}

.page-title-area[style*="background-image"]::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
}

.page-title-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #ffffff;
}

.breadcrumb-list li.active {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
}

/* Section Spacing - Consistent for all sections */
.section-spacing {
    padding: 50px 0;
    position: relative;
}

.section-spacing + .section-spacing {
    margin-top: 0;
}

/* About Us Area */
.about-us-area {
    background: #ffffff;
}

.about-us-area .container {
    max-width: 1200px;
}

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    z-index: 2;
    white-space: nowrap;
    transform-origin: center;
}

.experience-badge h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.top-title {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    /* margin: 32px 0; */
}

.about-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.about-features-list li i {
    color: #2563eb;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-features-list li span {
    flex: 1;
}

.about-btn-wrapper {
    margin-top: 8px;
}

/* Counter Area */
/* .counter-area.bg-color {
    background: #f8fafc;
} */

/* .counter-area {
    padding: 100px 0;
} */

.counter-area .container {
    max-width: 1200px;
}

.counter-area .row {
    margin: 0 -15px;
}

.single-counter {
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single-counter:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.counter-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 24px;
    display: block;
}

.single-counter h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.counter-number {
    display: inline-block;
}

.counter-plus {
    color: #2563eb;
    font-size: 32px;
    font-weight: 600;
}

.single-counter p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Choose Us Area */
.choose-us-area {
    background: #ffffff;
}

.choose-us-area .container {
    max-width: 1200px;
}

.choose-us-area .row {
    align-items: center;
}

.choose-us-content {
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choose-us-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.choose-us-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 32px;
}

.choose-us-boxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-choose-us-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.single-choose-us-box:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
    transform: translateX(8px);
}

.single-choose-us-box i {
    font-size: 36px;
    color: #2563eb;
    flex-shrink: 0;
}

.single-choose-us-box span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.choose-us-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-us-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Track Area */
.track-area {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.track-area .container {
    max-width: 1200px;
}

.tab-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.track-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.track-tabs .nav-link {
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.track-tabs .nav-link:hover {
    color: #2563eb;
    border-bottom-color: rgba(37, 99, 235, 0.3);
}

.track-tabs .nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background: transparent;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    margin-top: 30px;
}

.form-section-title:first-child {
    margin-top: 0;
}

/* ============================================
   BLOG PAGE STYLING
   ============================================ */

/* Blog Column One Area */
.blog-column-one-area {
    padding: 100px 0;
    background: #f8fafc;
}

.blog-column-one-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-column-one-area .row {
    margin: 0;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}

.blog-column-one-area .row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.blog-column-one-area .row.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* Single Blog Post */
.single-blog-post {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.single-blog-post:hover::before {
    transform: scaleX(1);
}

.single-blog-post:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #2563eb;
}

.post-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
    flex-shrink: 0;
}

.post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.single-blog-post:hover .post-image::after {
    opacity: 1;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-blog-post:hover .post-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 35px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content .date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #6b7280;
    background: #f8fafc;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-content .date i {
    color: #2563eb;
    font-size: 15px;
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 18px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-content h3 a:hover {
    color: #2563eb;
}

.blog-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 28px;
    flex: 1;
}

.default-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.default-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 ease;
}

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

.default-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.default-btn span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Read More Button Styles */
.read-more-btn {
    cursor: pointer;
    border: none;
    outline: none;
}

.read-more-btn.expanded {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

/* Blog Content Expand/Collapse */
.blog-excerpt {
    display: block;
}

.blog-full-content {
    animation: fadeIn 0.5s ease-in;
}

.blog-full-content p {
    margin-bottom: 16px;
}

.blog-full-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-full-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-full-content ul li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.blog-full-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination Area */
.pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-numbers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #2563eb;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.page-numbers:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.page-numbers:hover {
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.page-numbers span,
.page-numbers i {
    position: relative;
    z-index: 1;
}

.page-numbers.current {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.page-numbers.next,
.page-numbers.prev {
    min-width: auto;
    padding: 0 20px;
    font-weight: 700;
}

.page-numbers i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.page-numbers.next:hover i {
    transform: translateX(2px);
}

.page-numbers.prev:hover i {
    transform: translateX(-2px);
}

/* Widget Sidebar */
.widget-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Column Alignment */
.col-lg-8,
.col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure proper flex alignment */
.blog-column-one-area .row.align-items-start {
    align-items: flex-start !important;
}

/* Blog post wrapper alignment */
.col-lg-8 .row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.col-lg-8 .row > * {
    width: 100%;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Search Widget */
.search-form {
    position: relative;
    display: flex;
    gap: 0;
}

.search-form .form-control {
    width: 100%;
    padding: 14px 56px 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-form .form-control:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.search-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.search-button:active {
    transform: translateY(-50%) scale(0.98);
}

.search-button i {
    font-size: 18px;
}

/* Widget Title */
.widget-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
    padding-left: 20px;
}

.widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 3px;
}

/* Recent Post Widget */
.recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post ul li {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.recent-post ul li:hover {
    padding-left: 8px;
}

.recent-post ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post ul li a {
    display: flex;
    gap: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post ul li a:hover {
    transform: translateX(4px);
}

.recent-post ul li a img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.recent-post ul li a:hover img {
    border-color: #2563eb;
    transform: scale(1.05);
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.recent-post ul li a:hover .recent-post-content h4 {
    color: #2563eb;
}

.recent-post-content span {
    font-size: 13px;
    color: #6b7280;
    display: block;
    font-weight: 500;
}

/* Categories Widget */
.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
}

.categories ul li a:hover {
    color: #2563eb;
    background: #eff6ff;
    padding-left: 16px;
    transform: translateX(4px);
}

.categories ul li a::before {
    content: '▸';
    color: #2563eb;
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-4px);
}

.categories ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.categories ul li a span {
    color: #6b7280;
    font-size: 13px;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.categories ul li a:hover span {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.1);
}

/* Tags Widget */
.tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags ul li {
    margin: 0;
    padding: 0;
    border: none;
}

.tags ul li a {
    display: inline-block;
    padding: 10px 18px;
    background: #f8fafc;
    color: #374151;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tags ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #2563eb;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.tags ul li a:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.tags ul li a span {
    position: relative;
    z-index: 1;
}

.tags ul li a:hover {
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles for Blog */
@media (max-width: 992px) {
    .blog-column-one-area {
        padding: 80px 0;
    }
    
    .blog-column-one-area .container {
        padding: 0 20px;
    }
    
    .blog-column-one-area .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .widget-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .col-lg-8,
    .col-lg-4 {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .post-image {
        height: 350px;
    }
    
    .blog-content {
        padding: 28px 24px;
    }
    
    .blog-content h3 {
        font-size: 22px;
    }
    
    .sidebar-widget {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .blog-column-one-area {
        padding: 60px 0;
    }
    
    .blog-column-one-area .container {
        padding: 0 15px;
    }
    
    .blog-column-one-area .row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 1.25rem;
    }
    
    .col-lg-8,
    .col-lg-4 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .single-blog-post {
        margin-bottom: 0;
    }
    
    .post-image {
        height: 280px;
    }
    
    .blog-content {
        padding: 24px 20px;
    }
    
    .blog-content h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .blog-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .sidebar-widget {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .widget-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }
    
    .recent-post ul li {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .recent-post ul li a {
        gap: 14px;
    }
    
    .recent-post ul li a img {
        width: 70px;
        height: 70px;
    }
    
    .recent-post-content h4 {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .pagination-area {
        margin-top: 40px;
        padding-top: 30px;
        gap: 8px;
    }
    
    .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .blog-column-one-area {
        padding: 50px 0;
    }
    
    .blog-column-one-area .container {
        padding: 0 12px;
    }
    
    .blog-column-one-area .row.g-4 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 1rem;
    }
    
    .col-lg-8,
    .col-lg-4 {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .post-image {
        height: 240px;
    }
    
    .blog-content {
        padding: 20px 16px;
    }
    
    .blog-content .date {
        font-size: 13px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }
    
    .blog-content h3 {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 14px;
    }
    
    .blog-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .default-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .pagination-area {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .page-numbers.next,
    .page-numbers.prev {
        padding: 0 12px;
        min-width: auto;
    }
    
    .sidebar-widget {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .widget-title {
        font-size: 18px;
        padding-left: 14px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .search-form .form-control {
        padding: 12px 50px 12px 14px;
        font-size: 14px;
    }
    
    .search-button {
        width: 42px;
        height: 42px;
    }
    
    .recent-post ul li {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .recent-post ul li a {
        gap: 12px;
    }
    
    .recent-post ul li a img {
        width: 60px;
        height: 60px;
    }
    
    .recent-post-content h4 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    .recent-post-content span {
        font-size: 12px;
    }
    
    .categories ul li a {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .categories ul li a span {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .tags ul {
        gap: 8px;
    }
    
    .tags ul li a {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.track-form .form-group {
    margin-bottom: 20px;
}

.track-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.track-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #374151;
}

.radio-label:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: #2563eb;
    border-color: #2563eb;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Testimonials Area */
.testimonials-area {
    background: #ffffff;
}

.testimonials-area .container {
    max-width: 1200px;
}

.testimonials-area .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.single-testimonials {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.single-testimonials:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e5e7eb;
    flex-shrink: 0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-testimonials h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.single-testimonials p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.single-testimonials h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
    margin-top: auto;
}

.single-testimonials span {
    font-size: 14px;
    color: #6b7280;
    display: block;
}

/* Shipment Area */
.shipment-area {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.shipment-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.shipment-content .top-title {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.shipment-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.shipment-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shipment-btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Team Area */
.team-area {
    background: #ffffff;
}

.team-area .container {
    max-width: 1200px;
}

.team-area .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.single-team-member {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.single-team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.team-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-content span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.team-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: #ffffff;
    color: #2563eb;
    transform: translateY(-4px);
}

/* Partner Area */
.partner-area.bg-color {
    background: #f8fafc;
}

.partner-area {
    padding: 80px 0;
}

.partner-area .container {
    max-width: 1200px;
}

.partner-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partner-slider-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollPartnerLogos 40s linear infinite;
    align-items: center;
}

.partner-slide-item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

@keyframes scrollPartnerLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 16px;
}

.partner-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-spacing {
        padding: 80px 0;
    }
    
    .page-title-content h2 {
        font-size: 36px;
    }
    
    .about-us-area .row {
        align-items: flex-start;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
        padding-top: 0;
    }
    
    .experience-badge {
        right: 20px;
        top: 20px;
        transform: rotate(0deg);
        position: absolute;
    }
    
    .choose-us-area .row {
        align-items: flex-start;
    }
    
    .choose-us-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .shipment-content h2 {
        font-size: 32px;
    }
    
    .tab-container {
        padding: 40px 30px;
    }
    
    .partner-area {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-title-area {
        padding: 100px 0 50px;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .page-title-content h2 {
        font-size: 28px;
    }
    
    .about-content h2,
    .choose-us-content h2,
    .shipment-content h2 {
        font-size: 28px;
    }
    
    .about-img-wrapper {
        margin-bottom: 30px;
    }
    
    .experience-badge {
        position: static;
        transform: rotate(0deg);
        margin: 20px auto 0;
        display: inline-block;
        right: auto;
        top: auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .shipment-btn {
        flex-direction: column;
        gap: 12px;
    }
    
    .shipment-btn .btn {
        width: 100%;
    }
    
    .track-tabs {
        flex-direction: column;
    }
    
    .track-tabs .nav-link {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .tab-container {
        padding: 30px 20px;
    }
    
    .choose-us-boxes {
        margin-top: 30px;
    }
    
    .partner-slider {
        justify-content: center;
    }
    
    .partner-item {
        min-width: 150px;
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .page-title-area {
        padding: 80px 0 40px;
    }
    
    .section-spacing {
        padding: 50px 0;
    }
    
    .partner-area {
        padding: 50px 0;
    }
    
    .about-content h2,
    .choose-us-content h2 {
        font-size: 24px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .single-counter h2 {
        font-size: 36px;
    }
    
    .counter-icon {
        font-size: 36px;
    }
    
    .single-counter {
        padding: 40px 20px;
    }
    
    .tab-container {
        padding: 25px 15px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .partner-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .shipment-content h2 {
        font-size: 24px;
    }
    
    .shipment-content p {
        font-size: 16px;
    }
}

/* ============================================
   B2B SHIPPING PAGE STYLES
   ============================================ */

/* B2B Hero Section */
.b2b-hero-section {
    padding: 150px 0 100px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.b2b-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.b2b-hero-section .row {
    width: 100%;
    margin: 0;
}

.b2b-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.b2b-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 15px;
}

.b2b-hero-description {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.b2b-hero-buttons {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.b2b-hero-section .btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.b2b-hero-section .btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* B2B Features Section */
.b2b-features-section {
    padding: 80px 0;
    background: #f8fafc;
}

.b2b-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-features-content {
    padding-right: 30px;
}

.features-content-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-content-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.b2b-feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.b2b-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
}

.b2b-feature-list li i {
    color: #2563eb;
    font-size: 20px;
    flex-shrink: 0;
}

.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.b2b-stat-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.b2b-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.b2b-stat-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 28px;
}

.b2b-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.b2b-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* B2B Benefits Section */
.b2b-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.b2b-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.b2b-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* B2B How It Works Section */
.b2b-how-it-works-section {
    padding: 80px 0;
    background: #f8fafc;
}

.b2b-how-it-works-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    height: 100%;
}

.how-it-works-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 36px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.step-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* B2B Integration Section */
.b2b-integration-section {
    padding: 80px 0;
    background: #ffffff;
}

.b2b-integration-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-integration-section .btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.b2b-integration-section .btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.integration-content {
    padding-right: 30px;
}

.integration-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.integration-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.integration-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
}

.integration-list li i {
    color: #2563eb;
    font-size: 20px;
    flex-shrink: 0;
}

.integration-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.platform-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: #2563eb;
    background: #ffffff;
    transform: translateY(-3px);
}

.platform-item i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

.platform-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* B2B Stats Section */
.b2b-stats-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1f2937;
    position: relative;
}

.b2b-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.b2b-stats-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.b2b-stats-section .section-title {
    color: #1f2937;
}

.b2b-stat-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.b2b-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 36px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

/* B2B CTA Section */
.b2b-cta-section {
    padding: 80px 0;
    background: #f8fafc;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.b2b-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.b2b-cta-text {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.b2b-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.b2b-cta-buttons .btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.b2b-cta-buttons .btn-light {
    background: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.b2b-cta-buttons .btn-light:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.b2b-cta-buttons .btn-outline-light {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.b2b-cta-buttons .btn-outline-light:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* B2B Shipping Responsive Styles */
@media (max-width: 1200px) {
    .b2b-hero-section .container,
    .b2b-features-section .container,
    .b2b-benefits-section .container,
    .b2b-how-it-works-section .container,
    .b2b-integration-section .container,
    .b2b-stats-section .container,
    .b2b-cta-section .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .b2b-hero-section {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .b2b-hero-title {
        font-size: 42px;
        line-height: 1.3;
    }
    
    .b2b-hero-description {
        font-size: 18px;
    }
    
    .b2b-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .b2b-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .b2b-features-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .integration-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .b2b-hero-section {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .b2b-hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .b2b-hero-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .b2b-hero-subtitle {
        font-size: 20px;
    }
    
    .b2b-hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .b2b-features-section,
    .b2b-benefits-section,
    .b2b-how-it-works-section,
    .b2b-integration-section,
    .b2b-stats-section,
    .b2b-cta-section {
        padding: 60px 0;
    }
    
    .features-content-title,
    .integration-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .features-content-text,
    .integration-text {
        font-size: 15px;
    }
    
    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .b2b-stat-box {
        padding: 25px 15px;
    }
    
    .b2b-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .b2b-stat-number {
        font-size: 20px;
    }
    
    .b2b-stat-label {
        font-size: 13px;
    }
    
    .integration-platforms {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .platform-item {
        padding: 25px 15px;
    }
    
    .b2b-cta-title {
        font-size: 32px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .b2b-cta-text {
        font-size: 17px;
        padding: 0 15px;
    }
    
    .b2b-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .b2b-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .b2b-stat-item {
        padding: 25px 15px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .b2b-hero-section {
        padding: 100px 0 60px;
    }
    
    .b2b-hero-title {
        font-size: 32px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .b2b-hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .b2b-hero-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .b2b-hero-section .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
        width: auto;
        max-width: 90%;
    }
    
    .b2b-features-section,
    .b2b-benefits-section,
    .b2b-how-it-works-section,
    .b2b-integration-section,
    .b2b-stats-section,
    .b2b-cta-section {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .features-content-title,
    .integration-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .features-content-text,
    .integration-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .b2b-feature-list li,
    .integration-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .b2b-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .b2b-stat-box {
        padding: 25px 15px;
    }
    
    .b2b-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .b2b-stat-number {
        font-size: 20px;
    }
    
    .b2b-stat-label {
        font-size: 12px;
    }
    
    .b2b-benefit-card,
    .how-it-works-card {
        padding: 30px 20px;
    }
    
    .benefit-icon,
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .benefit-title,
    .step-title {
        font-size: 20px;
    }
    
    .benefit-text,
    .step-text {
        font-size: 14px;
    }
    
    .step-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }
    
    .b2b-cta-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .b2b-cta-text {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .b2b-cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }
    
    .b2b-cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .b2b-stat-item {
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .integration-platforms {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .platform-item {
        padding: 20px 15px;
    }
    
    .platform-item i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .platform-item span {
        font-size: 15px;
    }
    
    .b2b-integration-section .btn-primary {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
}

.suggestions-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.suggestions-list li {
    margin: 0;
}

.suggestions-list a {
    color: #2563eb;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.suggestions-list a:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Responsive 404 Page */
@media (max-width: 768px) {
    .error-page-section {
        padding: 120px 0 80px;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 28px;
    }
    
    .error-message {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .suggestions-list {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestions-list a {
        width: 100%;
        text-align: center;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 60px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-message {
        font-size: 15px;
    }
}

/* ============================================
   B2C SHIPPING PAGE STYLES - NEW & PROFESSIONAL
   ============================================ */

/* B2C Hero Section */
.b2c-hero-section {
    padding: 160px 0 120px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.b2c-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%);
    opacity: 1;
}

.b2c-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.b2c-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.b2c-hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.b2c-hero-description {
    font-size: 20px;
    color: #ffffff;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.b2c-hero-btn {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.b2c-hero-btn:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

/* B2C Features Section */
.b2c-features-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.b2c-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2c-features-content {
    padding-right: 40px;
    text-align: left;
}

@media (max-width: 992px) {
    .b2c-features-content {
        padding-right: 0;
        text-align: center;
    }
}

.b2c-feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.b2c-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.b2c-feature-list li:last-child {
    border-bottom: none;
}

.b2c-feature-list li i {
    color: #2563eb;
    font-size: 22px;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2c-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.b2c-stat-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.b2c-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.b2c-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.b2c-stat-box:hover::before {
    transform: scaleX(1);
}

.b2c-stat-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.b2c-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.b2c-stat-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* B2C Benefits Section */
.b2c-benefits-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.b2c-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2c-benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e5e7eb;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.b2c-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.b2c-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

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

.b2c-benefit-card .benefit-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.4s ease;
}

.b2c-benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

/* B2C How It Works Section */
.b2c-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.b2c-how-it-works-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2c-how-it-works-section .how-it-works-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f3f4f6;
    height: 100%;
    position: relative;
}

.b2c-how-it-works-section .how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.b2c-how-it-works-section .step-icon {
    width: 90px;
    height: 90px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ffffff;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.4s ease;
}

.b2c-how-it-works-section .how-it-works-card:hover .step-icon {
    transform: scale(1.1);
}

.b2c-how-it-works-section .step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.b2c-how-it-works-section .step-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* B2C Integration Section */
.b2c-integration-section {
    /* padding: 100px 0; */
    background: #ffffff;
}

.b2c-integration-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2c-integration-section .integration-content {
    padding-right: 40px;
    text-align: left;
}

@media (max-width: 992px) {
    .b2c-integration-section .integration-content {
        padding-right: 0;
        text-align: center;
    }
}

.b2c-integration-section .integration-list li {
    border-bottom: 1px solid #f3f4f6;
    padding: 14px 0;
}

.b2c-integration-section .integration-list li i {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2c-integration-section .btn-primary {
    background: #2563eb;
    border: none;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.b2c-integration-section .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.b2c-integration-section .platform-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.b2c-integration-section .platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.b2c-integration-section .platform-item i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

/* B2C Stats Section */
.b2c-stats-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.b2c-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.b2c-stats-section .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b2c-stats-section .section-title {
    color: #1f2937;
    font-size: 42px;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
}

.b2c-stat-item {
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.b2c-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.b2c-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.b2c-stat-item:hover::before {
    transform: scaleX(1);
}

.b2c-stat-item .stat-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 40px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    transition: all 0.4s ease;
}

.b2c-stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.b2c-stat-item .stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1;
}

.b2c-stat-item .stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* B2C CTA Section */
.b2c-cta-section {
    /* padding: 100px 0; */
    background: #ffffff;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.b2c-cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.b2c-cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.b2c-cta-text {
    font-size: 20px;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
    text-align: center;
}

.b2c-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.b2c-cta-btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.b2c-cta-btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

.b2c-cta-btn-secondary {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.b2c-cta-btn-secondary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    color: #ffffff;
}

/* B2C Responsive Styles */
@media (max-width: 1200px) {
    .b2c-hero-section .container,
    .b2c-features-section .container,
    .b2c-benefits-section .container,
    .b2c-how-it-works-section .container,
    .b2c-integration-section .container,
    .b2c-stats-section .container,
    .b2c-cta-section .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .b2c-features-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .b2c-integration-section .integration-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .b2c-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .b2c-hero-section {
        padding: 120px 0 80px;
    }
    
    .b2c-hero-title {
        font-size: 42px;
        line-height: 1.3;
    }
    
    .b2c-hero-subtitle {
        font-size: 22px;
    }
    
    .b2c-hero-description {
        font-size: 18px;
    }
    
    .b2c-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .b2c-cta-title {
        font-size: 36px;
    }
    
    .b2c-cta-text {
        font-size: 18px;
    }
    
    .b2c-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .b2c-cta-btn-primary,
    .b2c-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
