.custom-radius {
    border-radius: 0px 0px 35px 35px;
}

#hero{
    display: none;
}
/* Hero2 background image with overlay & enhanced styling */
#hero2 {
    position: relative;
    background: url('../img/heroBG.png') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

#hero2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a darker and slightly more transparent overlay */
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Ensure the content is above the overlay and add a fade-in animation */
#hero2>.container {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

/* Fade-in keyframe animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update headings and text for improved readability */
#hero2 h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero2 h2 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#hero2 p {
    color: #eee;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Optionally, update the button styling for more prominence */
#hero2 .btn-get-started {
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    transition: background-color 0.3s, color 0.3s;
}

#hero2 .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.bg-footer {
    background-color: #1f2937;
}

/* Updated Internal Carsoul Slider to show one image at a time with fade effect */
.internal-carsoul {
    position: relative;
    overflow: hidden;
}

/* Ensure the slider track stretches to fill its container's height */
.internal-carsoul .slider-track {
    position: relative;
    width: 100%;
    height: 350px;
    border: 5px solid white;
    overflow: hidden;
}

/* Slider images now fill the container */
.internal-carsoul .slider-track img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlider 16s infinite;
}

/* Stagger animations for each image (assumes 4 images) */
.internal-carsoul .slider-track img:nth-child(1) {
    animation-delay: 0s;
}
.internal-carsoul .slider-track img:nth-child(2) {
    animation-delay: 4s;
}
.internal-carsoul .slider-track img:nth-child(3) {
    animation-delay: 8s;
}
.internal-carsoul .slider-track img:nth-child(4) {
    animation-delay: 12s;
}

/* Keyframes for fade slider */
@keyframes fadeSlider {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

/* Move slider dots below the slider-track */
.internal-carsoul .slider-dots {
    position: static; /* Remove absolute positioning */
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    opacity: 1;
}

.bg-gray {
    background-color: #cccccc;
}

.bg-red {
    background-color: #da0410;
}

.bg-green {
    background-color: #28a745;
}

.bg-blue {
    background-color: #007bff;
}

.bg-yellow {
    background-color: #ffa60d;
}

.bg-orange {
    background-color: #fd7e14;
}

.bg-purple {
    background-color: #6f42c1;
}

.bg-pink {
    background-color: #e83e8c;
}

.bg-footer {
    background-color: #1f2937;
}

.text-gray {
    color: #cccccc;
}

.text-red {
    color: #da0410;
}

.text-green {
    color: #28a745;
}

.text-blue {
    color: #007bff;
}

.text-yellow {
    color: #ffa60d;
}

.text-orange {
    color: #fd7e14;
}

.text-purple {
    color: #6f42c1;
}

.text-pink {
    color: #e83e8c;
}

.card-hover-yellow:hover {
    background-color: #ffa60d;
    color: white;
}

.card-hover-red :hover {
    background-color: #da0410;
    color: white;
}

.card-hover:hover {
    background-color: #e7e7e7;
    color: white;
}

.custom-card:hover {
    background-color: #da0410;
    color: white;
}

.custom-card:hover .card-title,
.custom-card:hover .card-text,
.custom-card:hover .icon-container i {
    color: white;
}

.custom-card .card-title,
.custom-card .icon-container i {
    color: #da0410;
}

/* Responsive styling for hero2 section */
@media (max-width: 991px) {
    #hero2 {
        padding: 30px 0;
        min-height: auto;
    }

    #hero2 h1 {
        font-size: 2.5rem;
    }

    #hero2 h2 {
        font-size: 1.8rem;
    }

    #hero2 p {
        font-size: 1rem;
    }

    .text-content {
        text-align: center;
    }

    .internal-carsoul .slider-track {
        height: 300px;
    }
}

@media (max-width: 576px) {
    #hero2 h1 {
        font-size: 2rem;
    }

    #hero2 h2 {
        font-size: 1.5rem;
    }

    .internal-carsoul .slider-track {
        height: 250px;
    }
}
.service-type-text{
    padding: 0px 0px;
    margin: 0px 0px;
    font-weight: 500;
}

.contact-info-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon-box i {
    font-size: 20px;
    color: #0d6efd;
}

.contact-info-item .info-content h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-item .info-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-info-item .location-group p,
.contact-info-item .phone-group p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info-item .badge {
    font-weight: 500;
    font-size: 0.75rem;
}

/* WhatsApp Float Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-item {
        margin-bottom: 2rem;
    }
}