﻿.contact-page {
    background: #f4f6f9;
    padding: 40px 0;
}

.breadcrumb-banner {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('Image/bedagr2.jpg') center/cover no-repeat;
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

    .breadcrumb-banner h2 {
        font-size: 36px;
        font-weight: 700;
    }

.breadcrumb a {
    color: #ffd27d;
}

.contact-card {
    background: linear-gradient(135deg,#ffcc70,#ff9f45);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-6px);
    }

    .contact-card i {
        font-size: 36px;
        color: #fff;
        margin-bottom: 10px;
    }

    .contact-card h5 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact-card p {
        font-size: 14px;
        margin: 0;
    }

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top: 5px solid #ff8c00;
}

    .contact-form-box label {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #444;
    }

    .contact-form-box .form-control {
        height: 45px;
        border-radius: 8px;
        border: 1.5px solid #ccc;
        background: #fafafa;
        padding: 10px 14px;
        font-size: 14px;
    }

    .contact-form-box textarea.form-control {
        height: 130px;
        resize: vertical;
    }

    .contact-form-box .form-control:focus {
        border-color: #ff8c00;
        box-shadow: 0 0 0 3px rgba(255,140,0,.15);
        background: #fff;
        outline: none;
    }

.submit-btn {
    background: linear-gradient(135deg,#ff9800,#ff6f00);
    color: #fff;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }
