/* --- Custom Logistics Design System --- */

:root {
    --primary-color: #0083eb;
    --primary-hover: #0052cc;
    --navy-blue: #001f4d;
    --navy-blue-light: #003380;
    --slate-dark: #0f172a;
    --slate-medium: #334155;
    --slate-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-blue-light: #f4faff;
    --border-color: #e2e8f0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.logistic-hero-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    color: var(--slate-dark);
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--slate-medium);
    margin-bottom: 30px;
    line-height: 1.65;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.hero-features-list li {
    font-size: 15px;
    color: var(--slate-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.hero-img-col {
    position: relative;
    padding: 20px;
}


/* Floating Metrics Cards */
.floating-metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 31, 77, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    width: 225px;
    text-align: left;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-metric-card .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e6f0ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.floating-metric-card .card-content h6 {
    font-size: 11px;
    color: var(--slate-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.floating-metric-card .card-content .metric-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--slate-dark);
    margin: 2px 0;
    line-height: 1.1;
}

.floating-metric-card .card-content .metric-desc {
    font-size: 11px;
    color: var(--slate-muted);
    margin: 0;
    line-height: 1.2;
}

/* Custom Floating Card Positions */
.card-1 {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -3%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 10%;
    right: -5%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: -2%;
    animation-delay: 4.5s;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Solutions Grid Section
   ========================================================================== */


.solution-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-card:hover {
    box-shadow: 0 20px 45px rgba(0, 131, 235, 0.05);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.solution-card .icon-circle-wrap {
    width: 60px;
    height: 60px;
    background: #eaf5ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.solution-card:hover .icon-circle-wrap {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
}

.solution-card h5 {
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.solution-card p {
    color: var(--slate-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Services Section (End-to-End App Dev)
   ========================================================================== */

.logistic-services-section {
    position: relative;
}

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

.services-check-list li {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-medium);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-check-list li i {
    font-size: 18px;
}

.consultation-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.consultation-link:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
    gap: 12px;
}

.cloud-development-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.cloud-development-box .box-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--slate-dark);
    margin-bottom: 16px;
}

.cloud-development-box .box-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cloud-development-box .bullet-item {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cloud-development-box .graphic-container {
    margin-top: 30px;
}

.cloud-services-img {
    box-shadow: 0 12px 30px rgba(0, 31, 77, 0.05);
    border: 1px solid #f1f5f9;
}

/* ==========================================================================
   Featured Solutions (Detailed Cards Grid)
   ========================================================================== */

.logistic-featured-section {
    background-color: #ffffff;
}

.featured-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.featured-card .card-header-row {
	display: flex;
	align-items: start;
	gap: 14px;
	margin-bottom: 0px;
	flex-direction: column;
}

.featured-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e6f0ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.featured-card h5 {
    font-weight: 700;
    color: var(--slate-dark);
    margin: 0;
    line-height: 1.4;
}

.featured-card .card-intro {
    color: var(--slate-muted);
    line-height: 1.6;
    margin-bottom: 5px;
    flex-grow: 1;
}

.featured-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-card .features-list li {
    font-weight: 400;
    color: var(--slate-medium);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-card .features-list li i {
    font-size: 13px;
    color: #27c93f;
}


.featured-card .features-list li:last-child{
    margin: 0 !important;
}


/* ==========================================================================
   Call To Action Banner
   ========================================================================== */

.logistic-cta-section {
    background-color: #ffffff;
}

.cta-banner {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-shape-circle-1 {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -90px;
    right: -60px;
}

.cta-shape-circle-2 {
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -60px;
    left: 12%;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */

.logistic-faq-section {
    position: relative;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.faq-btn {
    padding: 24px !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    color: var(--slate-dark) !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-btn::after {
    transition: transform 0.2s ease-in-out;
}

.faq-btn:not(.collapsed) {
    color: var(--primary-color) !important;
    background: #f8faff !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.faq-body {
    padding: 24px;
    font-size: 14.5px;
    color: var(--slate-muted);
    line-height: 1.65;
    background: #ffffff;
}

/* ==========================================================================
   Responsive Styling (Media Queries)
   ========================================================================== */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }
    .tech-category {
        width: 25%;
        padding: 20px;
    }
    .tech-grid {
        width: 75%;
        padding: 16px 20px;
    }
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 32px;
    }
    .hero-title {
        font-size: 42px;
        text-align: center;
    }
    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features-list {
        margin: 0 auto 30px auto !important;
        max-width: 520px;
    }
    .hero-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }
    .floating-metric-card {
        display: none; /* Hide floating cards on tablet for cleaner visual display */
    }
    .tech-row {
        flex-direction: column;
    }
    .tech-category {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 14px 20px;
    }
    .tech-grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        padding: 16px 20px;
    }
}

@media (max-width: 767px) {
    .section-pd {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-features-list {
        grid-template-columns: 1fr;
        max-width: 290px;
        text-align: left;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px !important;
        align-items: stretch;
    }
    .theme-new-btn, .theme-new-outline-btn {
        text-align: center;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cloud-development-box {
        padding: 24px;
    }
    .stats-bar-container {
        padding: 30px 15px;
    }
    .stat-num {
        font-size: 28px;
    }
    .stat-desc {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .choose-card {
        padding: 20px 15px;
    }
    .accordion-button {
        font-size: 15px !important;
        padding: 18px 15px !important;
    }
    .accordion-body {
        padding: 15px !important;
        font-size: 13.5px;
    }
}
