html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(360deg, #ff9a9e, #fad0c4);
    color: #333;
    padding: 80px 20px 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Fixed Header */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 7px;
    border-radius: 10px;
    position: fixed;
    top: 0;
    gap: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 65px; /* Adjust based on your logo size */
    border-radius: 8px;
}


/* Services Section */
.services {
    margin: 20px 0;
}

/* Gallery Section */
.gallery {
    margin-top: 30px;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    justify-content: center;
    padding: 20px 10px;
}

.gallery-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

#countdown-section {
    background: #fce4ec;
    color: #c2185b;
    text-align: center;
    padding: 20px 10px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Welcome Section */
.welcome {
    text-align: center;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 30px auto;
}

.welcome h2 {
    margin-bottom: 10px;
}

.welcome p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.welcome strong {
    color: #ffdeeb;
}

/* Footer map style */
.footer-map {
    margin-top: 10px;
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .footer-map {
        height: 250px; /* taller on bigger screens */
    }
}


/* Why Choose Us Section */
.why-choose-us, .location {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    padding: 20px 10px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.why-choose-us h2, .location h2 {
    color: #ffff;
    margin-bottom: 10px;
}

.why-choose-us ul, .location ul {
    color: #ffff;
    list-style: none;
}

.why-choose-us li, .location li {
    text-align: left;
    margin: 5px 0;
}

/* Full-Screen Image View */
.fullscreen-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.fullscreen-view img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: black;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* WhatsApp Button */
#whatsappBtn {
    background-color: #25D366;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    padding: 10px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#whatsappBtn:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
}

/* Services Section */
.services {
    margin: 30px auto;
    text-align: center;
    max-width: 600px
}

.service-list {
    display: grid;
    margin-top: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Same as gallery */
    gap: 15px;
    justify-content: center;
}

/* Individual Service Box */
.service {
    background: linear-gradient(327deg, #ff758c, #fffbfce3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

/* Hover Effect */
.service:hover {
    transform: scale(1.05);
}

/* Service Images */
.service img {
    width: 100%;
    height: 200px; /* Fixed height for uniform size */
    object-fit: cover; /* Ensures images fit properly */
    border-radius: 10px;
}

/* Responsive Grid (Matching Gallery Behavior) */
@media (max-width: 1024px) {
    .service-list {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 480px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* 1 column */
    }
}
.certification, .contact {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 20px auto;
}

.certification a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.certification a:hover {
    color: #ffdeeb;
}


footer {
    text-align: center;
    font-size: 14px;
    padding: 20px 10px;
    background-color: #fce4ec;
    border-radius:10px;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
}

footer #footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
}
footer a {
    color: #514d4d;
}
footer p {
    margin-top:10px;
}
