

.image-container {
    position: relative;
    width: 100%; /* The width is responsive */
    padding-top: 75%; /* This creates an aspect ratio of 4:3 (height = 75% of width) */
    overflow: hidden; /* Ensures that any overflowed content is hidden */
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area of the container */
}

.post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.readmore {
    color: var(--color-primary);
}

.posts-list .post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

/* Styling the offer badge */
.offer-badge {
    position: absolute;
    bottom: 10px; /* Adjust this value to change how close the text is to the bottom */
    left: 10px; /* Adjust this value to change the distance from the left */
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for contrast */
    color: white; /* White text */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.offer-badge-top-left {
    position: absolute;
    top: 10px; /* Distance from the top */
    left: 10px; /* Distance from the left */
    background-color: #0c1d2d; /* Dark background for contrast */
    color: white; /* White text */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.offer-badge-top-right {
    position: absolute;
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for contrast */
    color: white; /* White text */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* Custom styles for the marker image */
.custom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;  /* Make the image round */
    border: 3px solid #ffffff;  /* Add a white border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  /* Add a soft shadow around the icon */
    transition: transform 0.3s ease, box-shadow 0.3s ease;  /* Smooth transition for hover effects */
    overflow: hidden;  /* Hide any overflow from the image */
    position: relative;
}

/* Hover effect */
.custom-icon:hover {
    transform: scale(1.1);  /* Slightly enlarge the image */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 128, 255, 0.5);  /* Glowing effect */
}

/* Adding a gradient background color on hover for a modern feel */
.custom-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.6), rgba(0, 0, 0, 0.3));  /* Gradient overlay */
    opacity: 0;
    transition: opacity 0.3s ease;  /* Smooth transition for the gradient */
}

/* Show the gradient overlay on hover */
.custom-icon:hover::after {
    opacity: 1;
}

/* Make the marker image itself more polished */
.custom-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensure the image covers the icon area without distortion */
    border-radius: 50%;  /* Make sure the image itself is round */
}
#map {
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
}
.testimonial-item, .testimonial-wrap {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.testimonial-img-container {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);  /* Semi-transparent black background */
    border-top: 2px solid #feb900;  /* Adding a subtle border for style */
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.name-overlay:hover {
    transform: translateY(0);  /* Overlay becomes visible when hovered */
    background-color: rgba(0, 0, 0, 0.8);  /* Darker background on hover */
}

/* Hover effect */
.testimonial-img-container:hover .testimonial-img {
    transform: scale(1.1); /* Slight zoom effect on image */
}

.testimonial-img-container:hover .name-overlay {
    transform: translateY(0); /* Slide the name up when hovering */
}

h3 {
    font-size: 16px;
    font-weight: bold;
    transition: font-size 0.3s ease;
}

.testimonial-img-container:hover h3 {
    font-size: 18px; /* Slight increase in name size */
}

.stars {
    display: none;
}
* {
    font-family: 'El Messiri', sans-serif;

    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, span, div {
    font-family: 'El Messiri', sans-serif;
}

#navbar {
    font-family: 'El Messiri', sans-serif;
}

#navbar ul {
    list-style-type: none;

}

#navbar ul li a {
    font-family: 'El Messiri', sans-serif;
    text-decoration: none;
    display: block;
}

#navbar ul li a.active {
    font-weight: bold;
}

#navbar ul li {
}
#header{

}
#main {
    background-color: #f8f9fa !important;
}
section {
    background-color: #f8f9fa !important;
}
#services{
    background-color: #f8f9fa !important;

}
#recent-blog-posts{
    background-color: #f8f4f0 !important;

}
#alt-services {
    background-color:  #f8f9fa !important;
}

#contact {
    background-color: #f8f4f0 !important;
}

#testimonials {
    background-color:  #f8f9fa !important;
}

#get-started {
    background-color: #f8f4f0 !important;
}
section {
    background-color: #f8f9fa !important;
}
#services{
    background-color: #f8f9fa !important;

}
#recent-blog-posts{
    background-color: #f8f4f0 !important;

}
#alt-services {
    background-color:  #f8f9fa !important;
}

#contact {
    background-color: #f8f4f0 !important;
}

#testimonials {
    background-color:  #f8f9fa !important;
}

#get-started {
    background-color: #f8f4f0 !important;
}
.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#help-message {
    opacity: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

@media (max-width: 576px) {
    #help-message {
        max-width: 200px;
    }
}
.post-item {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.post-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

