
    .testimonial-item {
        text-align: center;
        padding: 20px;
    }

    .testimonial-item img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .testimonial-item p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 10px;
    }

    .testimonial-item span {
        display: block;
        font-weight: bold;
        color: #333;
    }

    .testimonial-item span:last-child {
        font-weight: normal;
        color: #777;
    }

    .carousel {
        margin-top: 30px;
    }

    .heading-text h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
    }

    .heading-text p {
        font-size: 1.125rem;
        color: #777;
    }
   
    /* Background & Section Styling */
    .inquiry-section {
        background: url('homepages/branding/images/background-4.png') no-repeat center;
        background-size: cover;
        color: white;
        padding: 80px 0;
    }

    .inquiry-heading {
        text-align: center;
        margin-bottom: 50px;
    }

    .inquiry-heading h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .inquiry-heading p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    /* Form Styling */
    .inquiry-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
    }

    .inquiry-form .form-control {
        background: rgb(255 248 248 / 20%);
        color: #ac2121;
        border: 1px solid rgb(0 0 0 / 83%);
    }

    .inquiry-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .inquiry-form .form-control:focus {
        border-color: #d3a157;
        box-shadow: 0px 0px 8px rgba(211, 161, 87, 0.8);
    }

    /* Button Styling */
    .inquiry-btn {
        background: #d3a157;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        font-size: 1.2rem;
    }

    .inquiry-btn:hover {
        background: white;
        color: #d3a157;
        border: 1px solid #d3a157;
    }
 
    
            /* CTA Section Styling */
            .cta-section {
                background: linear-gradient(to right, #ff4e50, #fc913a);
                padding: 80px 0;
                text-align: center;
                color: white;            
                box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            }

            .cta-section h1 {
                font-size: 2.5rem;
                font-weight: bold;
                margin-bottom: 20px;
            }

            .cta-section p {
                font-size: 1.2rem;
                margin-bottom: 30px;
            }

            /* CTA Button Styling */
            .cta-btn {
                display: inline-block;
                background: white;
                color: #ff4e50;
                font-size: 1.1rem;
                font-weight: bold;
                padding: 12px 25px;
                border-radius: 8px;
                text-decoration: none;
                transition: all 0.3s ease-in-out;
                margin: 10px;
            }

            .cta-btn:hover {
                background: black;
                color: white;
            }
        
        
        /* Card Styling */
        .custom-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease-in-out;
        }

        /* Hover Effect */
        .custom-card:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
            box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
        }

        .custom-card h3 {
            transition: color 0.3s ease-in-out;
        }

        .custom-card:hover h3 {
            color: #ffcc00;
        }
    
    


.icon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon-box .icon {
    font-size: 2.5rem;
    color: #007bff;
}

.icon-box h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #333;
}

.icon-box p {
    color: #555;
    font-size: 1rem;
}

.heading-section h2 {
    font-size: 2.5rem;
    color: #333;
}

.heading-section p {
    font-size: 1.125rem;
    color: #555;
}

.container {
    max-width: 1140px;
}



/* Section Background */
.services-section {
    background-color: #9d6b52;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Card Styling */
.service-card {
    background: rgba(70, 79, 84, 0.865);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

/* Hover Effect */
.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

.service-card h4 {
    color: #e7ddd7;
    margin-top: 15px;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    margin-top: 10px;
    color: white;
}

/* Icon Styling */
.service-icon {
    font-size: 3rem;
    color: #d3a157;
}
@media (max-width: 468px) {
    .cta-section {
        background: linear-gradient(to right, #ff4e50, #fc913a);
        padding: 29px 0;
        text-align: center;
        color: white;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }
}