/* styles.css */

body {
    font-family: Arial, sans-serif;
    /* background-color: navajowhite; */
}


.why-choose-usa {

.why-choose-us {

    text-align: center;
    padding: 40px;
}


.why-choose-usa h2 {
    font-size: 34px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Style for the features container */
.featuresa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Add space between the feature items */
    align-items: center;
}

/* Style for each feature box */
.featurea {
    position: relative;
    width: 200px; /* Set a fixed width for the feature box */
    height: auto;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

/* Style for the images */
.featurea img {
    width: 50px;
    height: 50px;
    object-fit: cover; /* Ensures the image covers the box without distortion */
    transition: transform 0.3s ease-in-out; /* Smooth zoom-in and zoom-out effect */
}

/* Hover effect for zooming the image */
.featurea:hover img {
    transform: scale(1.1); /* Zoom in effect */
}

/* Hover effect for scaling the whole feature box */
.featurea:hover {
    transform: scale(1.05); /* Slight zoom-out effect for the whole feature box */
}

/* Style for the text under each image */
.featurea p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Adjust the color as needed */
}

/* Style for the features container */
.featuresa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Add space between the feature items */
    align-items: center;
}

/* Style for each feature box */
.featurea {
    display: flex;
    flex-direction: column; /* Ensures image and text are in a vertical column */
    align-items: center; /* Centers both the image and text horizontally */
    justify-content: center;
    width: 200px; /* Set a fixed width for the feature box */
    height: auto;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

/* Style for the images */
.featurea img {
    width: 50px;
    height: 50px;
    object-fit: contain; /* Keeps the image aspect ratio */
    transition: transform 0.3s ease-in-out; /* Smooth zoom-in and zoom-out effect */
}

/* Hover effect for zooming the image */
.featurea:hover img {
    transform: scale(1.1); /* Zoom in effect */
}

/* Hover effect for scaling the whole feature box */
.featurea:hover {
    transform: scale(1.05); /* Slight zoom-out effect for the whole feature box */
}

/* Style for the text under each image */
.featurea p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Adjust the color as needed */
    text-align: center; /* Ensures the text is centered */
}





.why-choose-us h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    width: 150px;
    margin: 40px;
}

.feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: hue-rotate(240deg) brightness(1.2); /* Styling to match icon color */
}

.feature p {
    font-size: 16px;
    color: #666;
}

