/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Main Container Styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: var(--background-color, #fff);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* Header Styling */
h1 {
    text-align: center;
    color: var(--text-color, #333);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Form Styling */
form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Form Group Styling */
.form-group {
    flex: 1 1 calc(50% - 15px);
    margin-bottom: 20px;
}

/* Label Styling */
label {
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color, #333);
}

/* Input and Select Styling */
select,
input[type="text"],
input[type="number"],
input[type="datetime-local"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fafafa;
    transition: border 0.3s;
}

/* List Styles */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin: 15px 0;
    font-size: 18px;
    color: #444;
}

/* Description List Styles */
dl {
    margin: 25px 0;
}

dt {
    font-weight: bold;
    color: var(--heading-color, #007bff);
}

dd {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}



/* "Why Choose Us" Section Styling */
.whychoseu {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
}


/* Heading Styles */
h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-color, #333);
    border-bottom: 2px solid var(--heading-color, #007bff);
    padding-bottom: 10px;
}





/* Image Gallery Styling */
.image-gallery {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space items evenly */
    flex-wrap: wrap; /* Allow wrapping to the next line */
    max-width: 1000px; /* Limit the width of the gallery */
    margin: 0 auto; /* Center the gallery */
}

/* Individual Item Styling */
.item {
    flex: 1 1 30%; /* Grow to fill space, basis of 30% for 3 items */
    margin: 10px; /* Space around each item */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Image Styling */
.item img {
    width: 100%; /* Make image fill the item */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem; /* Smaller heading size for mobile */
    }

    .form-group {
        flex: 1 1 100%; /* Stack form groups on smaller screens */
    }

    .image-gallery .item {
        flex: 1 1 100%; /* Stack images vertically on small screens */
    }