@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}


header, footer {
    background-color: #303336;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 2px -2px gray;
}

footer .contact-info {
    margin-top: 10px;
}

footer p, footer .contact-info p {
    margin: 5px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.logo, .partner-logo {
    width: 75px;
    height: auto;
    transition: transform 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav a {
    color: #4ced67;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 2em;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#hero {
    background: url('hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

#hero h2 {
    margin-bottom: 20px;
    font-size: 2.5em; /* Increased font size for impact */
}

#hero p {
    margin-bottom: 20px;
	font-size: 1.2em;
}

.button {
    padding: 12px 24px;
    font-size: 1.2em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.gallery-item {
    flex: none;
    scroll-snap-align: center;
}

.gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .service-item {
        flex: 1 1 100%;
    }
    .gallery img {
        width: 150px;
        height: 150px;
    }
    form {
        padding: 10px;
    }
    .button {
        width: 100%;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-form {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .office-address {
        margin-top: 20px;
    }
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    align-self: center;
}

form button:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    flex: 1 1 calc(33% - 40px);
    background: #0066cc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    color: #ffcc00;
	text-align: center;
    margin-bottom: 10px;
}

.service-item p {
    color: #fff;
	text-align: center;
}

.whatsapp-contact {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-contact a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #25D366;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-contact a:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-form {
    flex: 3;
    margin-right: 20px;
}

.office-address {
    flex: 2;
    background: #303336;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.office-address h3 {
    color: #ffcc00;
	text-align: left;
    margin-bottom: 10px;
}

.office-address p {
    color: #fff;
	text-align: left;
}

.map-container {
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.office-address iframe {
    width: 100%;
    height: 200px;
    border: none;
}
#company-profile {
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    margin: 40px auto;
}

#company-profile h2 {
    text-align: center;
    margin-bottom: 20px;
}

#company-profile p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 16px;
}

.pdf-container {
    max-width: 900px;
    margin: 0 auto;
}
