:root {
    --primary-blue: #002e5b;
    --accent-orange: #f37021;
    --dark-grey: #333333;
    --light-grey: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    overflow-x: hidden;
}

.text-primary { color: var(--primary-blue) !important; }
.text-accent { color: var(--accent-orange) !important; }
.bg-primary { background-color: var(--primary-blue) !important; }
.bg-accent { background-color: var(--accent-orange) !important; }

.btn-accent {
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

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

.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-toggler {
    z-index: 1001; /* Higher than absolute logo */
    position: relative;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
    transition: 0.5s ease;
    display: block;
    margin: 0;
    padding: 8px 0; /* Added vertical padding as requested */
}

.navbar-brand:hover img {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey) !important;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,46,91,0.7), rgba(0,46,91,0.7)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Collapsed navbar (Bootstrap lg breakpoint): room for toggler, no squashed logo */
@media (max-width: 991.98px) {
    .navbar-brand {
        max-width: calc(100vw - 100px);
        padding-right: 0.5rem;
    }
    .navbar-brand img {
        height: 44px;
        width: auto;
        max-width: min(220px, calc(100vw - 100px));
        max-height: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        display: none !important;
    }
    .carousel-item {
        height: 60vh !important;
    }
    .section-padding {
        padding: 40px 0;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .carousel-item .btn {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
    }
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
        position: absolute;
        top: 60px;
        left: 15px;
        right: 15px;
        z-index: 999;
    }
    .navbar-nav {
        text-align: center;
    }
    .nav-link {
        margin: 10px 0;
    }
    /* Optimized Product Tabs for Mobile */
    .port-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .port-tabs .nav-item {
        flex: 1 1 auto;
        text-align: center;
    }
    .port-tabs .nav-link {
        min-width: auto !important;
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
        display: block;
        width: 100%;
    }
    .btn-product-tab {
        padding: 8px 10px !important;
    }
    /* General Button Optimization for Mobile */
    .btn-lg, .btn-xl {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }
    /* Product Card Optimization for 2-per-row Mobile */
    .service-img-container {
        height: 150px !important;
    }
    .service-content h4 {
        font-size: 0.85rem !important;
    }
    .service-content {
        padding: 10px !important;
    }
    .section-heading.display-5 {
        font-size: 1.5rem !important;
    }
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,46,91,0.1);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--primary-blue) !important;
    color: white !important;
}

.feature-card:hover .text-accent {
    color: var(--white) !important;
}

.feature-card:hover .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

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

.hero-title, .hero-subtitle, .d-flex.gap-3 {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle { animation-delay: 0.2s; }
.d-flex.gap-3 { animation-delay: 0.4s; }

.service-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
}

footer .footer-logo {
    height: 40px;
    width: auto;
    max-width: min(240px, 100%);
    object-fit: contain;
    object-position: left center;
    display: block;
}

.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent-orange);
    border-radius: 20px;
    z-index: -1;
    transform: translate(20px, 20px);
}

.section-title-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    display: block;
    margin-top: 15px;
}

.stats-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent-orange);
    transition: 0.3s;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bg-gradient-overlay {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: var(--primary-blue);
    animation-delay: 0.5s;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 46, 91, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 46, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 46, 91, 0);
    }
}

/* Testimonials */
.testimonial-section {
    background: #fdfdfd;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px 10px;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(0,0,0,0.03);
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-orange);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-orange) !important;
}

/* Global Logistics Badge */
.global-logistics-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(243, 112, 33, 0.45);
    animation: badgeGlow 2.5s ease-in-out infinite alternate;
}

.global-logistics-badge i {
    font-size: 1.1rem;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 4px 20px rgba(243, 112, 33, 0.45);
    }
    to {
        box-shadow: 0 6px 30px rgba(243, 112, 33, 0.75);
    }
}

/* ==============================
   ABOUT PAGE - HERO BANNER
================================ */
.about-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #001e40 0%, #002e5b 50%, #004a8f 100%),
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    background-blend-mode: multiply;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ==============================
   ABOUT PAGE - EXPERIENCE BADGE
================================ */
.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #e05a00);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(243, 112, 33, 0.5);
    text-align: center;
    border: 4px solid white;
    animation: badgeGlow 2.5s ease-in-out infinite alternate;
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ==============================
   ABOUT PAGE - FEATURE ICONS
================================ */
.feat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.35);
}

/* ==============================
   VISION & MISSION SECTION
================================ */
.vm-section {
    background: linear-gradient(135deg, #001830 0%, #002e5b 45%, #003d7a 100%);
    position: relative;
    overflow: hidden;
}

.vm-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(243,112,33,0.06) 0%, transparent 60%),
        radial-gradient(circle at 85% 20%, rgba(0,100,200,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Vision & Mission Cards */
.vm-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.vm-vision {
    border-top: 4px solid var(--accent-orange);
}

.vm-vision:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 30px 60px rgba(243, 112, 33, 0.2);
}

.vm-mission {
    border-top: 4px solid #00bcd4;
}

.vm-mission:hover {
    box-shadow: 0 30px 60px rgba(0, 188, 212, 0.2);
}

/* Shine effect */
.vm-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.vm-card:hover .vm-card-shine {
    opacity: 1;
}

/* Icon wrap */
.vm-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vm-vision .vm-icon-wrap {
    background: linear-gradient(135deg, rgba(243,112,33,0.2), rgba(243,112,33,0.05));
    color: var(--accent-orange);
    border: 1px solid rgba(243,112,33,0.3);
}

.vm-mission .vm-icon-wrap {
    background: linear-gradient(135deg, rgba(0,188,212,0.2), rgba(0,188,212,0.05));
    color: #00bcd4;
    border: 1px solid rgba(0,188,212,0.3);
}

.vm-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vm-vision .vm-card-label { color: var(--accent-orange); }
.vm-mission .vm-card-label { color: #00bcd4; }

.vm-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.vm-card-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

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

.vm-list li {
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
}

.vm-list li:last-child { border-bottom: none; }

.vm-vision .vm-list li i { color: var(--accent-orange); }
.vm-mission .vm-list li i { color: #00bcd4; }

/* ==============================
   CORE VALUES CHIPS
================================ */
.value-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 20px;
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.value-chip:hover {
    background: rgba(243,112,33,0.12);
    border-color: rgba(243,112,33,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(243,112,33,0.15);
}

.value-chip-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-orange), #e05a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(243,112,33,0.35);
    transition: transform 0.3s ease;
}

.value-chip:hover .value-chip-icon {
    transform: rotate(8deg) scale(1.1);
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
================================ */
/* Objective Cards */
.objective-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(243, 112, 33, 0.1);
}

.obj-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.objective-card:hover .obj-icon-wrap {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

/* Port Tabs */
.port-tabs .nav-link {
    background: white;
    color: var(--primary-blue);
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.btn-product-tab {
    padding: 15px 40px;
    white-space: nowrap;
}

.port-tabs .nav-link.active {
    background: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 46, 91, 0.2);
}

.port-tabs .nav-link.active .text-accent {
    color: white !important;
}

.port-tabs .nav-link:hover:not(.active) {
    border-color: var(--accent-orange);
    background: rgba(243, 112, 33, 0.05);
}

.port-tab-content {
    min-height: 400px;
}

.port-tab-content .img-fluid {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .port-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        padding-bottom: 15px;
        flex-wrap: nowrap;
    }
    .port-tabs .nav-link {
        min-width: auto;
    }
}

.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

/* Premium CTA Section */
.bg-cta-premium {
    background: linear-gradient(135deg, #002e5b 0%, #004a8f 100%);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.2);
}

.cta-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(at top right, rgba(243, 112, 33, 0.15), transparent 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}


.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(243, 112, 33, 0.5) !important;
    transform: translateY(-5px);
}

.hover-accent:hover {
    color: var(--accent-orange) !important;
    text-shadow: 0 0 8px rgba(243, 112, 33, 0.3);
}

/* Enterprise Design Tokens */
:root {
    --enterprise-navy: #001e40;
    --enterprise-blue: #002e5b;
    --enterprise-accent: #f37021;
    --glass-white: rgba(255, 255, 255, 0.85);
    --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Premium Typography */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.section-heading {
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

/* Glassmorphism Stats Bar */
.enterprise-stats-bar {
    background: var(--glass-white);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: var(--premium-shadow);
    transform: translateY(-50%);
    margin-top: 0;
}

/* Service Card 2.0 (Enterprise) */
.service-card-premium {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 46, 91, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.service-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 46, 91, 0.12);
    border-color: var(--enterprise-accent);
}

.service-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img-container img {
    transition: transform 1.2s ease;
}

.service-card-premium:hover .service-img-container img {
    transform: scale(1.15);
}

.service-content {
    padding: 30px;
}

.focus-badge {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Top Bar Refined */
.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    color: #666;
    font-weight: 500;
}

.top-bar i {
    color: var(--enterprise-accent);
}

/* About Section Premium */
.about-image-wrapper-premium {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.enterprise-experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 5px solid var(--enterprise-accent);
    animation: float 5s ease-in-out infinite;
}

.icon-box-enterprise {
    width: 45px;
    height: 45px;
    background: rgba(243, 112, 33, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Feature Cards (Dark) */
.enterprise-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: 0.4s;
}

.enterprise-feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--enterprise-accent);
    transform: scale(1.02);
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
    background: rgba(243, 112, 33, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 112, 33, 0.2);
}

/* Premium CTA */
.bg-cta-enterprise {
    background: linear-gradient(135deg, var(--enterprise-navy) 0%, var(--enterprise-blue) 100%);
}

.cta-overlay-light {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-xl {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.line-height-relaxed {
    line-height: 1.8;
}

/* Certificate Slider Premium */
.cert-card-enterprise {
    padding: 20px;
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.cert-logo {
    max-height: 70px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.swiper-slide:hover .cert-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.swiper-slide:hover .cert-card-enterprise {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.swiper-wrapper {
    transition-timing-function: linear !important; /* Smooth continuous scroll */
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .enterprise-stats-bar {
        transform: translateY(-20px);
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .border-end-md {
        border-end: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

@media (min-width: 992px) {
    .border-end-md {
        border-right: 1px solid rgba(0,0,0,0.05);
    }
}

/* Background Utility Classes */
.bg-enterprise-navy {
    background-color: var(--enterprise-navy) !important;
}

.bg-cta-enterprise {
    background: linear-gradient(135deg, var(--enterprise-navy) 0%, var(--enterprise-blue) 100%) !important;
}

.text-accent {
    color: var(--enterprise-accent) !important;
}




