body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    box-sizing: border-box;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.services, .about, .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.services div, .about div, .contact div {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.services img, .about img, .contact img {
    width: 100%;
    height: auto;
}

#quote {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

#quote h3 {
    text-align: center;
}

#quote form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#quote form input, #quote form textarea, #quote form button {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#quote form button {
    background: #333;
    color: #fff;
    cursor: pointer;
    border: none;
}

#quote form button:hover {
    background: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.button {
    background-color: #2563eb;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #1e40af;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 24px;
}

.popup form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup input, .popup textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup button {
    padding: 10px;
    background-color: #16a34a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup button:hover {
    background-color: #15803d;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

/* Ensure all images are the same size */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Soft background color for the cards */
.card-body {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
}

/* Hover animation */
.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ensuring cards are consistent in height */
.card {
    transition: transform 0.3s ease-in-out;
}

.floating-call-button {
    z-index: 1000;
}

#contactBtn {
    background-color: #ea580c !important;
    color: white !important;
    border: none !important;
}

#contactBtn:hover {
    background-color: #c2410c !important;
}

#contactBtn:focus, #contactBtn:active {
    outline: none !important;
    box-shadow: none !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 100%, 100%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

/* Body Styling */
body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    background-color: #fff3e0;
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* Navigation Links */
nav a {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Card Titles */
.card-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

/* Paragraph Styling */
p {
    font-size: 1.125rem;
}