* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header Section */
.header-area {
    background: linear-gradient(90deg, #222, #444);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #555;
    font-size: 14px;
}

.top-header-left .social-item a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.top-header-left .social-item a:hover {
    color: #ff9800;
}

.top-header-right ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.top-header-right ul li a {
    color: #fff;
    text-decoration: none;
}

.bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    font-size: 16px;
}

.bottom-header-logo h2 {
    font-size: 28px;
    color: #ff9800;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navigation {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navigation li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.navigation li a:hover {
    color: #ff9800;
}

/* contact-us.css */

/* General Styles */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header-area {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.header-area h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}

.header-area p {
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Form Section */
.contact-form {
    background-color: #fff;
    padding: 40px 20px;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer p {
    margin: 0 0 10px;
    font-size: 0.9rem;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-area h1 {
        font-size: 2rem;
    }

    .header-area p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}



/* Footer Section */
.footer-section {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    margin-top: 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-top .col {
    flex: 1 1 200px;
}

.footer-top .col-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.footer-top ul {
    list-style: none;
    padding-left: 0;
}

.footer-top ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bbb;
}

.footer-top ul li a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-top ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}
