/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff8f3;
    color: #2d2d2d;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

nav {
    background-color: #ff7a00;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    color: white;
    font-weight: 700;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

/* ================= HERO SECTION ================= */

.hero {
    text-align: center;
    padding: 120px 10%;
    background: linear-gradient(to right, #ff7a00, #ffb347);
    color: white;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    margin:auto;
    background-color: white;
    color: #ff7a00;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #2d2d2d;
    color: white;
}

.btn2 {
    margin: 20px auto;
    display: block;
    background-color: orange;
    color: white;
    width:50%;
    font-size:1.5rem;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn2:hover {
    background-color: #2d2d2d;
    color: white;
}
/* ================= SERVICES ================= */

.services {
    padding: 80px 10%;
    text-align: center;
}

.services h1 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #ff7a00;
}

.services ul {
    list-style: none;
    max-width: 800px;
    margin: auto;
}

.services li {
    background-color: white;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ================= CONTACT FORM ================= */

.contact {
    padding: 80px 10%;
    text-align: center;
}

.contact h1 {
    margin-bottom: 40px;
    color: #ff7a00;
}

form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

form textarea {
    height: 120px;
    resize: none;
}

button {
    padding: 14px 25px;
    background-color: #ff7a00;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #e56700;
}

/* ================= INFO SECTION ================= */

.info {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff2e6;
}

.info h2 {
    margin-bottom: 30px;
    color: #ff7a00;
}

/* ================= ADMIN TABLE ================= */

table {
    width: 90%;
    margin: 40px auto;
    border-collapse: collapse;
}

table th {
    background-color: #ff7a00;
    color: white;
    padding: 12px;
}

table td {
    padding: 12px;
    text-align: center;
}

table tr:nth-child(even) {
    background-color: #fff2e6;
}

table a {
    color: red;
    text-decoration: none;
    font-weight: 600;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        margin: 10px 0;
    }

    .hero {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .services,
    .contact,
    .info {
        padding: 50px 5%;
    }

    table {
        width: 100%;
        font-size: 12px;
    }
}
/* ================= WHY CHOOSE US CARDS ================= */

.info {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff2e6;
}

.info h2 {
    margin-bottom: 50px;
    color: #ff7a00;
    font-size: 32px;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
    color: #ff7a00;
}

.card p {
    font-size: 14px;
    color: #555;
}
.info-cards {
    grid-template-columns: 1fr;
}
