/* About Page Hero Section */
.about-hero {
    background: url('aboutimage.jpg'); /* yahan image ka naam/path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: #fff; /* agar text dikhe to white color */
}

.about-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.1rem;
    width: 70%;
    margin: 0 auto;
    line-height: 1.6;
    color: #fff; /* text white */
}

/* About Company Info */
.about-info {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255,255,255,0.8); /* thoda transparent white overlay */
}

.about-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-info p {
    font-size: 1.05rem;
    width: 75%;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.team h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background: #fff;
    border: 2px solid #000;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero p,
    .about-info p {
        width: 90%;
    }
 
    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
    }
}

/* Body background fallback (optional) */
body {
    background-color: #111;
}
.about-banner img {
    width: 100%;           /* container ki full width */
    max-width: 1000px;      /* optional, max width set kar sakti ho */
    height: auto;          /* aspect ratio maintain */
    max-height: 700px;     /* optional height limit */
    object-fit: cover;     /* container fill kare, crop ho sakta hai */
    display: block;        /* block remove gaps */
    margin: 0 auto;        /* center horizontally */
    border-radius: 15px;   /* optional rounded corners */
}

/* ===== FOOTER ===== */
.footer {
    background: #111; 
    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;
}












.three-box-section {
    padding: 60px 0;
}

.three-box-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.box p {
    font-size: 16px;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .three-box-container {
        grid-template-columns: 1fr;
    }

    .box img {
        height: 250px;
    }
}

/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}
