﻿/* Fleet Showcase Section - fleet-showcase.css */

.fleet-showcase-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #005cb9 0%, #1a3a7d 100%);
}

/* Video Background - Full section width */
.fleet-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fleet-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5
}



/* World Map Background - Only in bottom half */
.fleet-world-map {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
}

/* Stats Section - Normal flow within bottom section */
.fleet-stats {
    position: relative;
    z-index: 4;
    color: white;
    padding: 40px 30px;
}

.fleet-stat-main {
    margin-bottom: 15px;
}

.fleet-stat-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
}

.fleet-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 1;
}

.fleet-stat-label {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
}


/* Location pins removed - they exist in the video */

/* Network Lines - Only in bottom half */
.fleet-network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.fleet-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    animation: line-flow 3s ease-in-out infinite;
}

    .fleet-line.line-1 {
        top: 32%;
        left: 27%;
        width: 15%;
        transform: rotate(25deg);
        animation-delay: 0s;
    }

    .fleet-line.line-2 {
        top: 50%;
        left: 20%;
        width: 20%;
        transform: rotate(-15deg);
        animation-delay: 1s;
    }

    .fleet-line.line-3 {
        top: 45%;
        left: 50%;
        width: 18%;
        transform: rotate(35deg);
        animation-delay: 2s;
    }

/* Dotted Pattern Background - Only in bottom half */
.fleet-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 0.3;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes line-flow {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

/* ------------------------------------------------ */
/* Common Breakpoints for Responsive Design         */
/* ------------------------------------------------ */




/* Tablets & Small Laptops (Portrait) */
@media (max-width: 1200px) {
    .fleet-showcase-section {
        min-height: auto;
        height: auto;
    }
    .col-lg-7{
        width: 100%;
    }


    .fleet-stat-subtitle {
        font-size: 1.5rem;
        width: 20%;
    }



    .fleet-stats {
        padding-left: 10px;
    }

    .fleet-stat-label,
    .fleet-stat-number {
        font-size: 48px;
    }
    .container-fluid {
        display:flex;
    }
}

/* Smaller Tablets & Large Phones (Landscape) */
@media (max-width: 768px) {


    .fleet-stat-subtitle {
        font-size: 1.2rem;
        width: 30%;
    }

    .fleet-stat-number,
    .fleet-stat-label {
        font-size: 36px;
    }
}

/* Smartphones (Landscape) & Small Tablets */
@media (max-width: 576px) {

    .fleet-stat-subtitle {
        font-size: 1rem;
        width: 50%;
    }



    .fleet-stat-label,
    .fleet-stat-number {
        font-size: 22px;
    }
}

/* Small Smartphones (Portrait) */
@media (max-width: 480px) {

    .fleet-stat-subtitle {
        font-size: 0.9rem;
    }


    .fleet-stat-label,
    .fleet-stat-number {
        font-size: 20px;
    }
}

/* Very Small Smartphones */
@media (max-width: 376px) {

    .fleet-stat-subtitle {
        font-size: 0.8rem;
    }



    .fleet-stat-label,
    .fleet-stat-number {
        font-size: 18px;
    }
}


