* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: url('../images/First.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    background-color: #333; /* Fallback color for background image */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}


.services {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.service-item {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33% - 40px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6600;
}

.service-item p {
    font-size: 16px;
    color: #666;
}

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

.location {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.location h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.location-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6600;
}

.location-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.location-info a {
    color: #ff6600;
    text-decoration: none;
}

.location-info a:hover {
    text-decoration: underline;
}

.location-map {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
}

.location-map iframe {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33% - 20px);
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
}

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

.contact {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.contact-info {
    max-width: 400px;
    text-align: left;
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6600;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #e65c00;
    text-decoration: underline;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #ff6600;
    font-size: 20px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.contact-item a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e65c00;
    text-decoration: underline;
}