﻿/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 50px;
    }

.btn-explore {
    background: #3f8cff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
}

/* Main Content Wrapper */
.main-content {
    flex-grow: 1;
}

/* Services Section */
.services {
    padding-top: 2rem;
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left; /* ✅ Align everything to start */
    background-color: #fff;
}

    .services h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 0.5rem;
    }

/* Footer Section */
.footer {
    padding: 1rem 5%;
    background: #fff;
    border-top: 5px solid #74DDD9;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

    .footer-logo img {
        height: 35px;
    }

.footer p {
    color: #555;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }



form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
}

input, textarea, select, button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background: #2d2d2d;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

    button:hover {
        background: #444;
    }

.info {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #555;
}