    .why-choose-us {
    text-align: center;
    padding: 80px 20px 60px;
    background: #fefefe;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.02);
    animation: fadeIn 1.2s ease-in-out;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.choose-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.choose-item img {
    max-width: 70px;
    margin-bottom: 15px;
}

.choose-item h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.2rem;
}

.choose-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary: #002147;
    --primary-light: #004080;
    --yellow: #FFD700;
    --bg: #f5f7fa;
    --card-gradient1: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --card-gradient2: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    --card-gradient3: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --text-light: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.5;
}

header {
    background-color: white;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header container */
.header-container {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center horizontally */
    justify-content: center; /* center vertically */
    padding: 20px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

/* Logo styles */
.header-container img {
    max-height: 80px;
    height: auto;
    width: auto;
    margin-bottom: 15px;
}

/* Text section */
.header-container main {
    max-width: 800px;
}

.header-container main h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #002147;
}

.header-container main h3 {
    font-size: 1rem;
    font-weight: normal;
    margin: 5px 0;
    color: #555;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-left: 10%;
    padding-right: 10%;
    animation: fadeUp 1s ease-in-out;
    transition: all 0.4s ease-in-out; /* smooth resizing */
}

.service {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 150px;      /* adjust as you like */
    min-height: 150px;     /* ensures they’re not tiny */

    padding: 60px 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-size: cover;


}



.service:nth-child(1) { background: linear-gradient(135deg, #f3f5bbff 0%, #ebedee 100%); color: #333; }
.service:nth-child(2) { background: linear-gradient(135deg, #f6d365 0%, #b7a0ffff 100%); color: #333; }
.service:nth-child(3) { background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); color: #333; }
.service:nth-child(4) { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); color: #333; }
.service:nth-child(5) { background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%); color: #333; }
.service:nth-child(6) { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); color: #333; }

.service:hover {

    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 
                0 0 20px rgba(0, 150, 255, 0.2); /* subtle glow */
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.05));
}

.service h3 {
    margin: 0;
    font-weight: bold;
}

.contact {
    background: #ffffff;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #e0e0e0;
    animation: fadeUp 1s ease-in-out;
}

.contact h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

form input,
form textarea {
    flex: 1 1 220px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

form textarea {
    resize: none;
}

form input:focus,
form textarea:focus {
    background-color: #fff;
    border-color: var(--primary-light);
    box-shadow: 0 0 6px rgba(0,33,71,0.15);
    outline: none;
}

form button {
    flex: 0 0 auto;
    padding: 12px 25px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

form button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    form {
        flex-direction: column;
    }
    form input,
    form textarea,
    form button {
        flex: 1 1 100%;
    }
}

/* FOOTER */
footer {
    background-color: var(--yellow);
    text-align: center;
    padding: 15px;
    font-weight: bold;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpBounce {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    60% { opacity: 1; transform: translateY(-8px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Tablet view - 2 columns */
@media (max-width: 768px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Mobile view - 1 column full width */
@media (max-width: 480px) {
    .services {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .service {
        max-width: 90%;
        margin: auto;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-container img {
        max-height: 60px;
        margin-bottom: 10px;
    }

    .header-container main {
        padding-left: 0;
    }

    .header-container main h1 {
        font-size: 1.2rem;
    }

    .header-container main h3 {
        font-size: 0.95rem;
    }
}

.floating-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    z-index: 9999;

    /* Animation */
    opacity: 0;
    animation: fadeInOut 4s ease forwards;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.floating-msg.success {
    background: #e6ffed;
    color: #0f9d58;
    border: 2px solid #0f9d58;
}

.floating-msg.error {
    background: #ffe6e6;
    color: #d93025;
    border: 2px solid #d93025;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -60%); }
    10% { opacity: 1; transform: translate(-50%, -50%); }
    90% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -40%); }
}

