body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff; /* Light background color */
    color: #333333; /* Text color */
}

.navbar {
    background-color: #2c3e50; /* Deep blue-gray background color */
    /* Other navbar styles */
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.navbar-brand span {
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
}

.navbar-text a {
    font-size: 1.5rem; /* Make the phone number larger */
    font-weight: bold;
    color: #ffffff;
}

.navbar-text i {
    color: #ffffff;
    font-size: 1.5rem; /* Make the phone icon larger */
}

.carousel-item {
    height: 600px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    padding: 20px;
    border-radius: 5px;
    width: 100%; /* Ensure the caption spans the full width */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.carousel-caption h2 {
    font-size: 36px;
    color: #ffffff; /* White text color */
}

.carousel-caption p {
    font-size: 18px;
    color: #ffffff; /* White text color */
}

.carousel-caption .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #3498db; /* Bright blue button background */
    color: #ffffff; /* Button text color */
    border: 2px solid #3498db; /* Button border color */
    border-radius: 4px;
}

.carousel-caption .btn:hover {
    background-color: #2980b9; /* Darker blue button background on hover */
    color: #ffffff; /* Text color on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.carousel-caption {
    position: relative;
    z-index: 2;
}

section {
    padding: 60px 0;
}

section h2 {
    margin-bottom: 20px;
    background: #2c3e50; /* Deep blue-gray background */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    width: 100%; /* Full width */
}

.list-unstyled {
    font-size: 18px;
    padding-left: 20px;
}

footer {
    background-color: #2c3e50; /* Deep blue-gray background color */
    color: #ffffff;
    padding: 20px;
}

.card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-header {
    background: #2c3e50; /* Deep blue-gray background */
    color: #ffffff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 15px;
}

.card-body {
    color: #333333; /* Dark gray text for readability */
    background-color: #ffffff; /* White background */
    padding: 15px;
    flex-grow: 1;
}


.coupon {
    border: 2px dashed #e74c3c; /* Vibrant red accent color */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.coupon h5 {
    font-size: 28px;
    margin-bottom: 10px;
}

.coupon p {
    margin: 5px 0;
}

.coupon a {
    text-decoration: none;
    color: #e74c3c; /* Vibrant red accent color */
    font-weight: bold;
}

.coupon a:hover {
    color: #2c3e50; /* Deep blue-gray on hover */
}

/* Services Section */
.service-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box i {
    color: #3498db; /* Bright blue accent color */
}

.service-box h4 {
    margin-top: 15px;
    font-size: 20px;
}

.service-box ul {
    list-style-type: none;
    padding: 0;
}

.service-box ul li {
    margin: 10px 0;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form .form-control {
    border-radius: 4px;
}

.contact-form .btn {
    background-color: #3498db; /* Bright blue accent color */
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
}

.contact-form .btn:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background color for the section */
}


.faq-item {
    border: 1px solid #2c3e50; /* Border color to match the theme */
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden; /* Ensure content stays within borders */
}

.faq-item .faq-question {
    background: #2c3e50; /* Deep blue-gray background color */
    color: #ffffff;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item .faq-answer {
    background: #ffffff; /* White background for the answer */
    padding: 15px;
    font-size: 16px;
    color: #333333;
}

.faq-item .faq-question:hover {
    background: #34495e; /* Lighter blue-gray on hover */
}

/* Adjusting h2 inside #prices section */
#prices h2.text-center {
    color: #ffffff; /* White text color */
    background-color: #2c3e50; /* Deep blue-gray background */
    padding: 20px 0; /* Adjust padding as needed */
    text-align: center; /* Ensure text alignment */
    margin-top: 0; /* Remove any default margin */
}

/* Adjusting h2 and h4 inside #prices section */
#prices h2.text-center,
#prices h4.text-center {
    color: #ffffff; /* White text color */
    background-color: #2c3e50; /* Deep blue-gray background */
    padding: 20px 0; /* Adjust padding as needed */
    text-align: center; /* Ensure text alignment */
    margin-top: 0; /* Remove any default margin */
}

#prices h4.text-center {
    font-size: 24px; /* Example size adjustment for h4 */
    font-weight: bold; /* Example font weight adjustment */
    margin-bottom: 20px; /* Example margin adjustment */
}

/* Adjusting icon color to match primary color */
.icon-primary {
    color: #3498db; /* Bright blue accent color */
}

/* Link Color */
a {
    color: #3498db; /* Bright blue link color */
}

a:hover {
    color: #2980b9; /* Darker blue for link hover */
}

/* Error/Warning Color */
.error-message {
    color: #FF0000; /* Red for errors */
}

.warning-message {
    color: #FFA500; /* Orange for warnings */
}

/* Success Color */
.success-message {
    color: #28A745; /* Green for success */
}

/* Informational Color */
.info-message {
    color: #17A2B8; /* Blue for informational messages */
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.85); /* Deep blue-gray with opacity */
    color: #ffffff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    margin-bottom: 5px;
    font-weight: bold;
}

.portfolio-overlay p {
    margin-bottom: 0;
    font-size: 14px;
}
