/* ==================== GLOBAL STYLES ==================== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #555;
}

a {
    text-decoration: none;
}

.header {
    background:rgb(6, 30, 54);
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}

/* ==================== LOGO ==================== */
.header .logo {
    margin-left: 10px;   /* push logo slightly from the left */
}

.header .logo a {
    display: inline-block;
}

.header .logo-img {
    width: 50px;          /* set logo width */
    height: auto;         /* maintain original aspect ratio */
    border-radius: 0;     /* remove round/circular shape */
    object-fit: contain;  /* scale logo nicely */
    background: transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.header .logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    filter: brightness(1.1);
}

/* ==================== NAVIGATION ==================== */
.header .nav {
    display: flex;
    gap: 25px;              /* spacing between links */
    margin-right: 20px;      /* push nav slightly from right edge */
}

.header .nav a {
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header .nav a:hover {
    color: #FFD700;  /* golden highlight on hover */
}
/* ==================== TRACKING HEADER ==================== */
.tracking-header {
    background: url('https://images.pexels.com/photos/6721907/pexels-photo-6721907.jpeg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}
.tracking-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.tracking-header h1,
.tracking-header .tracking-form {
    position: relative;
    z-index: 2;
}
.tracking-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.tracking-form input {
    padding: 12px;
    width: 280px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}
.tracking-form button {
    padding: 12px 24px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.tracking-form button:hover {
    background: #a00;
}

/* ==================== ERROR CARD ==================== */
.error-card {
    max-width: 400px;
    margin: 30px auto;
    background: #fff;
    border-left: 6px solid red;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

/* ==================== SERVICES CARDS ==================== */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.service-card h4 {
    color: red;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: #555;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: #fff;
    padding: 60px 20px;
}
.promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    gap: 40px;
}
.promo-text {
    flex: 1 1 400px;
}
.promo-text h2 {
    font-size: 28px;
    color: #555;
    margin-bottom: 10px;
}
.promo-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.promo-button {
    display: inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.promo-button:hover {
    background: #a00;
}
.promo-image {
    flex: 1 1 300px;
}
.promo-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==================== UPDATES ==================== */
.updates {
    padding: 60px 20px;
    background: #f9f9f9;
}
.updates h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #555;
}
.update-cards, .update-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.update-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}
.update-card h4 {
    color: red;
    margin-bottom: 10px;
}
.update-card p {
    font-size: 14px;
    color: #555;
}
.update-images img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ==================== ABOUT US HEADING ==================== */
.about-us h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

/* ==================== ABOUT US CARDS ==================== */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.about-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.about-card .about-text {
    padding: 15px 20px;
    text-align: center;
}

.about-card .about-text h3 {
    font-size: 20px;
    color: red;
    margin-bottom: 10px;
}

.about-card .about-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ==================== HORIZONTAL IMAGE UNDER SERVICE CARDS ==================== */
.services-banner {
    max-width: 1000px;
    margin: 40px auto 60px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.services-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}
.services-banner p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

/* ==================== PROMO BANNER IMAGE ==================== */
.promo-image img {
    max-width: 100%;
    height: 300px; /* reduced from full height */
    object-fit: cover;
    border-radius: 12px; /* subtle curve */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ==================== EXTRA SERVICES ==================== */
.extra-services {
    padding: 80px 20px;
    background: #fff;
}
.extra-services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}
.service-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-box {
    background: #fff;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.service-box h4 {
    color: red;
    margin-bottom: 10px;
}
.service-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 80px 20px;
    background: #f9f9f9;
}
.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}
.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.faq-item {
    background: #fff;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.faq-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.faq-item h4 {
    color: red;
    margin-bottom: 10px;
    font-size: 18px;
}
.faq-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #eee;
    font-size: 14px;
    color: #555;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .about-grid, .service-flex, .faq-container {
        flex-direction: column;
        align-items: center;
    }
    .tracking-form {
        flex-direction: column;
    }
    .tracking-form input, .tracking-form button {
        width: 100%;
    }
}
