﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8f9fc;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('../Content/Images/pexels-suissounet-1320815.jpg') center/cover no-repeat;
    z-index: 0;
    filter: brightness(0.75);
    transition: transform 0.6s ease;
}

.hero:hover .hero-image {
    transform: scale(1.03);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ff7b00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.7;
}


.services {
    background: #fff;
    padding: 80px 10%;
    text-align: center;
}

    .services h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
        color: #004aad;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-box {
    background: linear-gradient(145deg, #ffe6d2, #e0f7ff);
    border-radius: 16px;
    padding: 40px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

.service-color {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.check-status {
    background: #f9fbff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 750px;
    margin: 40px auto;
    text-align: center;
}

    .check-status h2 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #004aad;
        margin-bottom: 25px;
        position: relative;
    }

        .check-status h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #4fc3f7, #ffb74d);
            margin: 8px auto 0;
            border-radius: 2px;
        }

/* ===== FORM ===== */
.status-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.status-input {
    padding: 10px 15px;
    font-size: 0.95rem;
    border-radius: 30px;
    border: 1px solid #004aad;
    width: 220px;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

    .status-input:focus {
        border-color: #ffb74d;
        box-shadow: 0 0 6px rgba(255,183,72,0.35);
    }

.status-button {
    padding: 10px 25px;
    font-size: 0.95rem;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #4fc3f7, #ffb74d);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .status-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

/* ===== GRID ===== */
.status-result {
    overflow-x: auto;
}

.status-grid {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .status-grid th,
    .status-grid td {
        padding: 10px 12px;
        border-bottom: 1px solid #dbe4f3;
        text-align: center;
    }

    .status-grid th {
        background: linear-gradient(90deg, #4fc3f7, #ffb74d);
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    .status-grid td {
        background: #fff;
    }

    .status-grid tr:nth-child(even) td {
        background: #f7faff;
    }

    .status-grid tr:hover td {
        background: #fff5e6;
    }


.service-box:hover .service-color {
    transform: scale(1.05); 
}

/* ABOUT */
.about {
    background: linear-gradient(120deg, #fff3e0, #e0f7ff);
    color: #1a1a1a;
    text-align: center;
    padding: 100px 10%;
    border-radius: 30px;
    margin: 80px 10%;
}

    .about h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about p {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

/* VALUES */
.values {
    background: linear-gradient(135deg, #79c2ff, #ffd79a);
    color: #1a1a1a;
    text-align: center;
    padding: 100px 10%;
}

    .values h2 {
        font-size: 2.3rem;
        margin-bottom: 25px;
    }

    .values .intro {
        font-size: 1.1rem;
        margin-bottom: 60px;
        line-height: 1.7;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.value-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 20px 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

    .value-box:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-6px);
    }

/* FOOTER */
footer {
    background: #0e1a2b;
    color: #b5c7e0;
    padding: 40px 10%;
    font-size: 1rem;
}

    footer .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        text-align: left;
        align-items: flex-start;
    }

    footer .footer-logo img {
        max-height: 60px;
        width: auto;
        margin-bottom: 15px;
    }

    footer h3 {
        font-size: 1.4rem;
        color: #ffb74d;
        margin-bottom: 12px;
    }

    footer p {
        margin-bottom: 6px;
        line-height: 1.6;
    }

    footer .highlight {
        color: #fff;
        font-weight: 600;
    }

    footer .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.3);
        padding-top: 15px;
        margin-top: 20px;
        opacity: 0.8;
    }
.services {
    text-align: center;
    padding: 100px 10%;
    background-color: #ffffff;
}

    .services h2 {
        font-size: 2.4rem;
        color: #007bff;
        margin-bottom: 50px;
        font-weight: 700;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-box {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 153, 255, 0.15);
}

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 153, 255, 0.15);
    }

.service-color {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.service-box:hover .service-color {
    transform: scale(1.08);
}

.service-box h3 {
    color: #ff9800;
    font-size: 1.4rem;
    margin: 15px 0 8px;
}

.service-box p {
    color: #444;
    font-size: 0.95rem;
    padding: 0 20px 25px;
}

/* Popup overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: linear-gradient(145deg, #ffffff, #f2f9ff);
    border-radius: 22px;
    padding: 40px 30px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 153, 255, 0.2);
    position: relative;
    animation: popupFade 0.4s ease forwards;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-content h2 {
    color: #007bff;
    font-size: 1.9rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #ff9800;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .close-btn:hover {
        transform: scale(1.2);
    }


.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-item {
    background: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    width: 110px;
    height: 100px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .brand-item:hover {
        background: linear-gradient(145deg, #ffcc80, #81d4fa);
        transform: translateY(-4px);
    }

    .brand-item img {
        max-width: 80px;
        max-height: 50px;
        object-fit: contain;
        margin-bottom: 5px;
    }

    .brand-item span {
        font-size: 0.85rem;
        color: #333;
        font-weight: 600;
    }
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .about, .services, .values {
        padding: 60px 5%;
    }

    footer .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 25px;
    }
}
