/* Premium Styles for Logistic Nexus */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #122089;
    --secondary: #8c4f00;
    --accent: #fd9924;
    --white: #ffffff;
    --background: #fbf8ff;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1b1b21;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-headline {
    font-family: 'Manrope', sans-serif;
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(251, 248, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(18, 32, 137, 0.05);
}

/* Hero Slider Ken Burns Effect */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.swiper-slide-active img {
    animation: kenburns 10s ease-out forwards;
}

/* Slide Content Animations */
.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .slide-content.delay-1 { transition-delay: 0.3s; }
.swiper-slide-active .slide-content.delay-2 { transition-delay: 0.6s; }
.swiper-slide-active .slide-content.delay-3 { transition-delay: 0.9s; }

/* Parallax Section - Optimized for Performance */
.parallax-section {
    position: relative;
    overflow: hidden;
    isolation: isolate; /* Create new stacking context */
    background-image: none !important; /* Move to pseudo-element */
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    will-change: transform;
    opacity: 1;
}

.parallax-overlay {
    background: linear-gradient(to bottom, rgba(18, 32, 137, 0.85), rgba(18, 32, 137, 0.95));
    pointer-events: none; /* Ensure it doesn't block scroll */
}

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 32, 137, 0.1);
}

.service-card .icon {
    background-color: rgba(253, 153, 36, 0.1); /* Soft Orange */
    color: var(--accent);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .icon {
    background-color: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(253, 153, 36, 0.4);
}

/* US Expansion Card */
.us-expansion-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #0d1763;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
}
