body { 
    margin: 0;
    padding: 40px;
    
}

.Interest {
    max-width: 1200px; 
    margin: 20px auto; 
    padding: 40px 20px; 
    border-radius: 12px;
}

.Interest-header {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.Interest-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
}


.Interest-box {
    background-color: white;
    width: 40%; 
    padding: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    flex-grow: 1;
}

.Interest-box-header {
    background-color: #000;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.Interest-box-content {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


@media screen and (max-width: 1024px) {
    .Interest-box {
        width: 45%; 
    }
}

@media screen and (max-width: 768px) {
    .Interest-box {
        width: 100%; 
    }
}

body {
    font-family: var(--bs-font-sans-serif, sans-serif);
    margin: 0;
    padding: 20px; /* Light background color for the body */
}

.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.services-title {
    color: #000; 
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service-box {
    background-color: white;
    width: 30%; /* Adjusted width for 3 boxes per row */
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    max-width: 80px; /* Icon size */
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #6c757d;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 1024px) {
    .service-box {
        width: 45%; /* Two boxes per row on medium screens */
    }
}

@media screen and (max-width: 768px) {
    .service-box {
        width: 100%; /* One box per row on small screens */
    }
}

.gallery{
    padding-top: 100px;
}
/* Container styling for consistency */
.gallery .container {
    overflow: hidden;
}

/* General styling for images in the gallery */
.gallery img.galleryImage {
    width: 90%; /* Set image width to 90% */
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Initial shadow */
    margin: 0 auto; /* Center the images inside their columns */
    display: block; /* Ensure images are block elements to work with margin */
}

/* Hover effect: Zoom in and shadow */
.gallery img.galleryImage:hover {
    transform: scale(1.1);
    filter: brightness(0.9);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}

/* Optional: Make sure the images have no gaps or padding */
.ps-0, .pe-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

