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

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50; /* Darker text for better readability in light mode */
    background-color: #f9f9f9; /* Lighter background color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Global Styles */
h1, h2, h3, h4, p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header */
.site-header-wrapper {
    background-color: rgba(255, 255, 255, 0.95); /* Slight transparency */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px); /* Added blur effect */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem; /* Increased padding for better spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-weight: 700; /* Increased font weight for emphasis */
    font-size: 1.5rem; /* Slightly larger logo font */
    color: #1abc9c; /* Updated color for better contrast */
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05); /* Scale effect on hover */
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem; /* Increased gap for better spacing */
}

.nav a {
    color: #2c3e50; /* Dark link color */
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #1abc9c; /* Updated color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav a:hover {
    color: #1abc9c; /* Updated hover color */
}

.nav a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1abc9c, #f1c40f); /* Green to gold gradient */
    padding: 6rem 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.05);
}

/* Subtle lighting overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 35%, rgba(0, 0, 0, 0.06), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInSlide 1s ease-in-out both;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

.hero-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Entrance animation */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 2rem; /* Increased padding */
    background-color: #ffffff; /* Lighter background */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff; /* Light card background */
    border: 1px solid #1abc9c; /* Updated border color */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Softer shadow */
    padding: 2.5rem; /* Increased padding */
    width: 100%;
    max-width: 320px; /* Slightly larger max width */
    flex: 1 1 280px;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Added transform for hover */
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Enhanced hover shadow */
    transform: translateY(-4px); /* Slight lift effect */
}

.service-card h3 {
    font-size: 1.4rem; /* Increased font size */
    color: #1abc9c;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1.1rem; /* Increased font size */
    color: #2c3e50; /* Dark text color */
}

/* Button Section */
.button {
    text-align: center;
    padding: 4rem 1rem; /* Increased padding */
    background-color: #ffffff; /* Lighter button background */
}

#contactUsButton {
    background-color: #1abc9c; /* Updated button color */
    color: #ffffff;
    border: 1px solid #1abc9c; /* Updated border color */
    padding: 0.75rem 2.5rem; /* Increased padding */
    border-radius: 8px; /* More rounded corners */
    font-size: 1.1rem; /* Slightly larger font size */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transform for hover */
}

#contactUsButton:hover {
    background-color: #16a085; /* Darker hover color */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Footer */
#footer {
    background-color: #ffffff; /* Lighter footer background */
    padding: 2.5rem 1rem; /* Increased padding */
    border-top: 1px solid #1abc9c; /* Softer border color */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1rem; /* Slightly larger font size */
    color: #2c3e50; /* Darker text color */
    margin-top: 3rem;
}

#footer footer {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

#footer footer::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to bottom right, #1abc9c, #bdc3c7);
    margin: 0 auto 1rem auto;
    border-radius: 10px;
    opacity: 0.8;
}

/* Widget Container Section */
#widget-container {
    padding: 3.5rem 2rem;
    max-width: 880px;
    margin: 3rem auto;
    border: 1px solid #1abc9c; /* Updated border color */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

#widget-container:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

#widget-container h1 {
    font-size: 2.5rem;
    color: #2c3e50; /* Dark text color */
    margin-bottom: 1.2rem;
    font-weight: 800;
}

#widget-container p {
    font-size: 1.15rem;
    color: #7f8c8d; /* Softer light color */
    margin-bottom: 1.8rem;
    line-height: 1.75;
    text-align: center;
}

#widget-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1.8rem;
    text-align: left;
    display: inline-block;
}

#widget-container ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50; /* Dark text color */
    transition: color 0.2s ease;
}

#widget-container ul li:hover {
    color: #1abc9c;
    cursor: default;
}

#widget-container ul ul {
    list-style-type: circle;
    margin-top: 0.4rem;
    padding-left: 1.25rem;
}

/* Images Section */
.images-section {
    background-color: #ffffff; /* Lighter background */
    padding: 4rem 2rem;
}

.images-section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
}

.image-card {
    background-color: #ffffff; /* Light card background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative; /* Added to position the label correctly */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced hover shadow */
}

.image-label {
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
    color: #2c3e50; /* Dark text color */
    background-color: #ffffff; /* Lighter label background */
    border-top: 1px solid #1abc9c; /* Softer border color */
    font-weight: 500;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 1rem;
    background-color: #ffffff; /* Lighter background */
}

.contact-info-section-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #ffffff; /* Light card background */
    border-radius: 12px; /* More rounded corners */
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Softer shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #1abc9c; /* Updated border color */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Enhanced hover shadow */
}

.contact-card h1 {
    font-size: 1.4rem; /* Increased font size */
    color: #1abc9c;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.1rem; /* Increased font size */
    color: #2c3e50; /* Dark text color */
    margin: 0.25rem 0;
}

.contact-card a {
    color: #1abc9c; /* Updated link color */
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Quote Section */
.quote-container {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    padding: 1.5rem;
    border: 1px solid #1abc9c; /* Softer border color */
    border-radius: 10px;
    background-color: #ffffff; /* Lighter background */
    transition: transform 0.3s ease; /* Added transition */
}

.quote-container:hover {
    transform: scale(1.02); /* Scale effect on hover */
}

.quote-text {
    font-size: 1.3rem; /* Increased font size */
    font-style: italic;
    color: #2c3e50; /* Dark text color */
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1.1rem; /* Increased font size */
    font-weight: bold;
    color: #7f8c8d; /* Softer color */
}

.quote-btn {
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem; /* Increased padding */
    background-color: #1abc9c; /* Updated button color */
    color: white;
    border: none;
    border-radius: 8px; /* More rounded corners */
    cursor: pointer;
    font-size: 1.1rem; /* Slightly larger font size */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transform for hover */
}

.quote-btn:hover {
    background-color: #16a085; /* Darker hover color */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Applying Animations */
.hero-content {
    animation: fadeIn 1s ease forwards; /* Fade-in effect for hero content */
}

.service-card {
    animation: slideIn 0.5s ease forwards; /* Slide-in effect for service cards */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        max-width: 100%; /* Full width on smaller screens */
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Adjusted font size */
    }

    .hero-content h2 {
        font-size: 1.4rem; /* Adjusted font size */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem; /* Further adjusted font size */
    }

    .hero-content h2 {
        font-size: 1.2rem; /* Further adjusted font size */
    }

    #contactUsButton {
        padding: 0.5rem 1.5rem; /* Adjusted padding */
    }
}
