body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: url('Images/Untitled\ design.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: centre;
    align-items: center;
    background: rgba(30, 30, 60, 0.98);
    padding: 0.7rem 1rem;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
    color: #ffe082;
    border-bottom: 2px solid #ffe082;
}

.hero {
    margin-top: 30px;
    margin-left: 500px;
    padding: 2.5rem 2rem 1rem 7rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    max-width: 800px;
    animation: fadeIn 1.2s;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffe082;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fffde7;
}

.hero-content .highlight {
    color: #ffd54f;
    font-weight: 600;
}

.main-container {
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
    padding-right: 3vw;
}

.form-container {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22);
    border-radius: 16px;
    padding: 2.5rem 2.2rem;
    width: 350px;
    max-width: 95vw;
    animation: fadeIn 1s;
    margin-left: 60px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.toggle-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #ffe082;
    color: #2b5876;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form.hidden {
    display: none;
}

.auth-form h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffe082;
    text-align: center;
    letter-spacing: 1px;
}

.auth-form input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.85);
    color: #2b5876;
    outline: none;
    transition: box-shadow 0.2s;
}

.auth-form input:focus {
    box-shadow: 0 0 0 2px #ffe082;
}

.form-btn {
    background: linear-gradient(90deg, #ffe082, #ffd54f);
    color: #2b5876;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.15s, color 0.15s;
}

.form-btn:hover {
    background: linear-gradient(90deg, #ffd54f, #ffe082);
    color: #4e4376;
}

.form-message {
    min-height: 24px;
    font-size: 0.98rem;
    text-align: center;
    margin-top: 0rem;
    color: #ffb300;
}

@media (max-width: 1000px) {
    .hero {
        padding-left: 2rem;
        margin-left: 60px;
        max-width: 95vw;
    }

    .main-container {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 700px) {
    .form-container {
        margin-left: 0;
    }

    .taskbar {
        display: none;
    }

    .main-container {
        padding-top: 60px;
    }

    .navbar {
        padding: 0 0.7rem;
    }

    .hero {
        margin-left: 0;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

.image-row {
    display: grid;
    height: 400px;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1600px;
    margin: 10px auto;
    padding: 0 16px 60px 16px;
}

.image-item {
    text-align: center;
    /* Outline box */
    border-radius: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    /* White bg for contrast */
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.image-item:hover {
    border-color: #ffa726;
    /* Highlight border on hover */
    box-shadow: 0 8px 24px rgba(255, 167, 38, 0.4);
}

.image-item img {
    width: 100%;
    max-width: 500px;
    max-height: 230px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.caption {
    margin-top: 12px;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive: stack on smaller screens */
@media (max-width: 700px) {
    .image-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 400px) {
    .image-row {
        grid-template-columns: 1fr;
    }
}

footer {
    background: rgba(30, 30, 60, 0.98);
    color: white;
    padding: 20px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 5px 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffe082;
}

.footer-section p,
.footer-section ul {
    font-size: 1rem;
}

.footer-section a {
    color: #ffe082;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffb300;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

.why-choose-us {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: #a8e6cf1f;
    flex-wrap: wrap;
    margin-left: 150px;
    margin-right: 150px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    width: 400px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2rem;
    color: #2b5876;
    margin-bottom: 0.5rem;
}

.testimonials {
    border-radius: 15px;
    background: #f5e9d33a;
    margin: 0px 150px 40px;
    text-align: center;
    padding: 0.5rem 0rem 2rem 0rem;
}

.testimonials h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    background: #d8eecf;
    border-radius: 10px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 0.5rem;
}