/* Global Styles */
body {
    background-color: #ffffff;  /* White for clean Venus background */
    color: #333333;  /* Dark gray for text */
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;  /* Prevent horizontal scroll */
}

a {
    color: #008080;  /* Teal for Mercury's intellect and communication */
    text-decoration: none;
}

a:hover {
    color: #FFF9C4;  /* Light Yellow for positivity */
}

/* Container */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Section */
.header {
    background-color: #C0C0C0; /* Silver background for luxury (Venus) */
    color: #333333; /* Dark gray text */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Space between the logo/title and nav */
    align-items: center; /* Vertically center items */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add padding to the sides */
}

/* Logo and Title Alignment */
.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;  /* Space between logo and title */
}

.logo-title img {
    width: 50px;
    height: auto;
}

.logo-title h1 {
    font-size: 28px;
    color: #008080;  /* Teal color for Mercury's influence */
    margin: 0;
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 20px; /* Space between navigation links */
}

.nav-menu a {
    color: #008080;  /* Teal for links */
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFF9C4;  /* Light Yellow for Mercury's positive attention */
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;  /* Stack items vertically */
        text-align: center;  /* Center align the text */
    }

    .logo-title {
        justify-content: center;
        margin-bottom: 20px;  /* Add spacing below the logo/title */
    }

    .nav-menu {
        gap: 10px;  /* Reduce spacing between nav links on mobile */
    }

    .nav-menu a {
        font-size: 16px;  /* Smaller font size on mobile */
    }
}

/* Hero Section */
.hero {
    background: url('images/mercury.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #008080;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FFF9C4;
    color: #333333;
    transform: translateY(-3px);
}

/* About Us Section */
.about {
    padding: 70px 20px;
    background-color: #F0F8FF;  /* Pale Blue for Venus calm */
    text-align: center;
}

.about h2 {
    font-size: 28px;
    color: #008080;
    margin-bottom: 25px;
}

.about p {
    font-size: 16px;
    color: #555;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

/* Services Section */
.services {
    padding: 70px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    color: #008080;
    margin-bottom: 25px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: #F0F8FF;  /* Pale Blue for calm */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 60px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    color: #008080;
}

.service-item p {
    font-size: 14px;
    color: #555;
}

/* Partners Section */
.partners {
    padding: 70px 20px;
    background-color: #F0F8FF;  /* Pale Blue */
    text-align: center;
}

.partners h2 {
    font-size: 28px;
    color: #008080;
    margin-bottom: 25px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-logos img {
    width: 120px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 70px 20px;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    color: #008080;
    margin-bottom: 25px;
}

.contact p {
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    font-size: 16px;
    margin-bottom: 15px;
}

.qr-code {
    flex: 1;
    text-align: center;
}

.qr-code img {
    width: 130px;
    height: auto;
}

/* Footer */
.footer {
    background-color: #C0C0C0;
    color: #333;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 28px;
    }

    .header nav a {
        font-size: 14px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .about h2, .services h2, .contact h2, .partners h2 {
        font-size: 24px;
    }

    .about p, .services p, .contact p {
        font-size: 14px;
    }

    .service-item {
        max-width: 100%;
    }

    .partner-logos img {
        width: 100px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .qr-code img {
        width: 120px;
    }
}
