/* Base body style */
body {
    background-color: #f8f9fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #0d6efd, #0047b3);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

header .brand {
    margin: 0;
    font-size: 1.5rem;
}

header nav .btn {
    border-radius: 20px;
    transition: all 0.3s ease;
}

header nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* TRACK SECTION */
.track-section {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.track-image {
    max-width: 180px;
    border-radius: 10px;
}

.track-section input.form-control {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.track-section input.form-control:focus {
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
    border-color: #0d6efd;
}

.track-section .btn-primary {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.track-section .btn-primary:hover {
    background-color: #084298;
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #0d6efd;
    margin-top: 1.5rem;
}

.timeline-event {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -9px;
    background-color: #0d6efd;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    top: 5px;
}

.timeline-event h6 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.timeline-event small {
    color: #6c757d;
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(rgba(0, 38, 66, 0.85), rgba(0, 38, 66, 0.85)),
        url('../img/cargo-port.jpg') center/cover no-repeat;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    font-size: 3rem;
    color: #ffc107;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: #0d6efd;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* FEEDBACK SECTION */
.feedback-bg {
    background-image: url('../img/cargo-port.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.feedback-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 30, 38, 0.65);
    z-index: 1;
}

.feedback-bg>.container {
    position: relative;
    z-index: 2;
}

.feedback-bg .form-label,
.feedback-bg .form-control,
.feedback-bg .form-select,
.feedback-bg textarea {
    color: #fff;
}

.feedback-bg .form-control,
.feedback-bg .form-select,
.feedback-bg textarea {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.feedback-bg .form-control:focus,
.feedback-bg .form-select:focus,
.feedback-bg textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}

.feedback-bg .form-control::placeholder,
.feedback-bg textarea::placeholder {
    color: #eef !important;
}

/* TESTIMONIALS */
.testimonial-photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0d6efd;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease;
}

.testimonial-photo:hover {
    transform: scale(1.05);
    border-color: #ffc107;
}

blockquote {
    font-style: italic;
    max-width: 500px;
    margin: 20px auto;
}

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}


blockquote {
    font-style: italic;
    line-height: 1.5;
}

blockquote footer {
    margin-top: 0.7rem;
    font-size: 0.875rem;
    color: #666;
}

/* FOOTER */
footer {
    font-size: 0.9rem;
    padding: 1rem 0;
    text-align: center;
    background: #e9ecef;
    color: #555;
}