 /* Main Content */
 .section-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #0958b8;
    display: inline-block;
}
.hero-banner {
	background-image: url('../images/carousel.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
	color: white;
	position: relative;
	min-height: 400px;
	overflow: hidden;
}

.hero-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* Darker black overlay */
	z-index: 0;
}

.hero-banner .container {
	position: relative;
	z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: blue;
    bottom: -10px;
    left: 0;
}

.content-section {
    padding: 60px 0;
}

.content-img {
    border-radius: 8px;
    overflow: hidden;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-gray);
    text-align: center;
    padding: 60px 0;
}

.title-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-phone {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
    display: block;
}

/* Clients */
.clients-section {
    padding: 60px 0;
    text-align: center;
}

.client-logo {
    height: 60px;
    margin: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
}

/* Footer */
.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-box i {
    font-size: 30px;
    color: white;
}

/* Social sharing buttons */
.social-share {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.social-share a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    margin-bottom: 5px;
    transition: background-color 0.3s;
}

.social-share a:hover {
    background-color: var(--secondary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .content-img {
        margin-top: 30px;
    }
    .service-card, .service-box {
        margin-bottom: 20px;
    }
    .cta-section {
        padding: 30px 20px;
    }
    .cta-phone {
        font-size: 1.5rem;
    }
    .why-choose-us .row > div {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 40px 0;
    }
    .hero-banner h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .content-section {
        padding: 40px 0;
    }
    .client-logo {
        height: 40px;
        margin: 10px;
    }
}