/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Service Section Styles */
.service-section {
    padding: 50px 0;
}

.service-title {
    color: #d9534f;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    /* Responsive font size */
    font-weight: bold;
    text-align: center;
    /* Center the heading */
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* Responsive font size */
    margin-bottom: 0.75rem;
}

.service-list li i {
    min-width: 28px;
    font-size: 1.2rem;
    color: orange;
    /* Change checkmark color to orange */
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    /* Smooth hover effect */
}

.service-image:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .right-icon {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .service-list li {
        font-size: 0.95rem;
    }

    .service-list li i {
        font-size: 1.3rem;
        /* Larger checkmark size for mobile */
    }
}

@media screen and (max-width: 600px) {
    .card {
        width: 90%;
        height: auto;
    }

    .bg {
        height: 100vh;
        width: 100%;
    }

    .info {
        flex-wrap: wrap;
        justify-content: center;
    }

    ion-icon {
        padding: 5px;
    }
}
/* Heading Design */
.service-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem); /* Responsive font size */
    font-weight: bold;
    color: #fff; /* White text color */
    background-color: #d9534f; /* Red background */
    padding: 10px 20px; /* Padding for spacing */
    border-radius: 10px; /* Rounded corners */
    display: block; /* Full width */
    margin: 0 auto 20px; /* Center and add margin below */
    text-align: center; /* Center text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative; /* For pseudo-elements */
    overflow: hidden; /* Hide overflow for pseudo-elements */
}

.service-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #fff; /* White underline */
    transform: translateX(-50%);
}

.service-title:hover {
    background-color: #c9302c; /* Darker red on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Larger shadow on hover */
    transition: all 0.3s ease; /* Smooth transition */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-title {
        font-size: 1.75rem; /* Slightly larger font for mobile */
        padding: 8px 16px; /* Smaller padding for mobile */
    }
}
/* navbar  */


.navbar-brand {
    display: flex !important;
    align-items: center;

}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {

    /* Tablets and below */
    .navbar-brand img {
        height: 60px;
    }

}

@media (max-width: 768px) and (min-width: 426px) {

    /* Mobile */
    .navbar-brand img {
        height: 65px;
    }
}

@media (max-width: 375px) {

    .navbar-brand img {
        height: 55px;
    }
}

@media (max-width:1024px) {

    .navbar-brand img {
        height: 75px;
    }
}

@media (max-width: 425px) and (min-width: 376px) {

    /* Mobile screens (376px - 425px) */
    .navbar-brand img {
        height: 60px;
    }
}