/* Contact Page Styling */

/* Hero Section */
.contact-hero {
    background: #f9f9f9;
    text-align: center;
    padding: 80px 20px 50px;
    animation: fadeIn 1s ease-in-out;
}

.contact-hero h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #444;
    width: 70%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 20px;
    background: #fff;
}

/* Contact Info Box */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 2.5rem;
    line-height: 1.6;
}

.contact-info a {
    color: #25D366;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 350px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1.5px solid #000;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
}

.contact-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #25D366;
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-hero p {
        width: 90%;
    }
}
.contact .container {
    text-align: center !important;
}
.contact h1 {
    margin-top: 100px;   /* jitni space chaho utni */
    font-size: 50px;   /* apni choice ka size */
    font-weight: bold;
}
.contact p {
    font-size: 20px;
    line-height: 1.7;
}
/* ===== FOOTER ===== */
.footer {
    background: #000; 
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE (FORM) */
.footer-left {
    flex: 1;
    min-width: 320px;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border: 1px solid #ccc;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #555;           /* better placeholder color */
}


.footer-form button {
    background: #ff6a00;
    border: none;
    padding: 14px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #e45f00;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

/* COPYRIGHT */
.footer-copy p {
    margin: 3px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-right {
        margin-top: 20px;
    }
}






.contact-whatsapp {
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;          /* WhatsApp green */
    color: #fff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Icon size support (font-awesome) */
.btn-whatsapp i {
    font-size: 20px;
}


.contact-image-section {
    text-align: center;   /* Horizontal center */
    padding: 40px 0;
}

.contact-image {
    width: 100%;          /* Take full width of parent container */
    max-width: 1000px;    /* Optional: maximum width */
    height: auto;         /* Maintain aspect ratio */
    display: inline-block;
    border-radius: 15px;  /* Optional rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Optional shadow */
}

/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}







