body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #333;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.logo img {
  height: 70px;
}
.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #f15a22;
}
.contact-hero {
    background: linear-gradient(to right,#111,#555), url('../images/contact-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.contact-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-hero h1 span {
    color: #ff4b2b;
}

.contact-form-section {
    padding: 60px 10%;
    background: #4c3f3f;
    animation: slideUp 1s ease-in-out;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: #f15a22;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-section p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    height: 150px;
}

form button {
    background: #f15a22;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #d94e1f;
}

.contact-info {
    margin-top: 60px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #f15a22;
}

.contact-info p {
    font-size: 1.1rem;
    color: #444;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: zoomIn 2s ease-in-out;
}

.social-links a img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.2);
}
footer {
    background: #444;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
