
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fa;;
}


/* ================= HERO ================= */

.hero {
    background: #000;
    color: white;
    padding: 35px 0;
    text-align: center;
}

.hero h1 {
    font-weight: 600;
    font-size: 2.5rem;
}

.hero p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 60px 0;
}

/* Info boxes */

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #e8f6f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #28a745;
    font-size: 20px;
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: #28a745;
    border: 1px solid #e5e7eb;
}

.social-icons a:hover {
    background: #28a745;
    color: white;
}

/* FORM BOX & MAP BOX */

.form-box,
.map-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

/* ================= FORM INPUTS ================= */

.form-control {
    border-radius: 8px;
    padding: 12px 12px 12px 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    transition: all 0.4s ease;
}

.form-control:hover,
.form-control:focus {
    background: #fff;
    border-color: #28a745;
    box-shadow: 
        0 5px 10px rgba(40,167,69,0.12),
        0 8px 18px rgba(33,136,56,0.10);
    transform: translateY(-2px);
    outline: none;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

/* ================= SEND BUTTON ================= */

.btn-send {
    background: #28a745;
    color: #fff !important;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-send:hover {
    background: #218838;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* ================= INPUT ICON STYLE ================= */

.input-group-custom {
    position: relative;
    margin-bottom: 0;
}

/* Icon — grey hamesha, hover pe color change NAHI hoga */
.input-group-custom span {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Textarea ke andar icon upar se fix */
.input-group-custom textarea + span,
.input-group-custom span.textarea-icon {
    top: 14px;
    transform: none;
}
