    /* General Container Styling */
    .form-div {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Heading Styling */
    .form-div p {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

    /* Input Field Styling */
    .form-div .form-control {
        border: 1px solid #ced4da;
        border-radius: 8px;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .form-div .form-control:focus {
        border-color: #4caf50;
        box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    }

    /* Button Styling */
    .form-div .btn-primary {
        background-color: #4caf50;
        border-color: #4caf50;
        color: #fff;
        padding: 10px 15px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .form-div .btn-primary:hover {
        background-color: #45a049;
        border-color: #45a049;
    }

    /* Modal Heading Styling */
    .modal-header {
        border-bottom: 1px solid #e9ecef;
        background-color: #f8f9fa;
    }

    .modal-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        text-align: center;
    }

    /* Modal Close Button */
    .modal-header .close {
        color: #333;
        opacity: 1;
    }

    .modal-body {
        padding: 20px;
    }

    #contactHeading {
        font-size: 24px;
        font-weight: bold;
        color: #4caf50;
        text-align: center;
        margin-bottom: 20px;
    }
    .modal-footer {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adds spacing between the buttons */
}

.modal-footer .btn {
    background-color: #007bff; /* Same blue color for both buttons */
    color: #fff; /* White text color */
    border: none; /* Remove any border */
}

.modal-footer .btn:hover {
    background-color: #0056b3; /* Slightly darker blue on hover */
}

button.btn {
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
    margin-top: 25px;
}

button.btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

button.btn i {
    font-size: 18px;
}

/* Style only the content inside description, benefits, and service types */
.projects-detail p,
.projects-detail ul,
.projects-detail li {
    font-family: 'Arial', sans-serif; /* Use a clean, uniform font */
    font-size: 16px;
    color:#7a7d79;

    line-height: 1.6;
}
.projects-detail img {
    max-width: 100%;
  height: 350px;
  
    border-radius: 8px;
}