/* Base Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #1b3526;
    --accent-color: #f2e5c5;
    --text-dark: #333;
    --text-light: #f8f8f8;
    --background-light: #fcfbf5;
    --border-radius: 20px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--accent-color);
}

.logo-and-name {
    display: flex;
    align-items: center;
}

.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-name {
    padding-left: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.main-navigation .menu-items {
    display: flex;
    list-style: none;
}

.menu-item {
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-item a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.menu-item a:hover, .menu-item.active a {
    color: var(--primary-color);
}

.search-icon-image {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.search-icon-image:hover {
    background-color:white;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    color:white;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;

    background-color: var(--accent-color);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: darkgreen;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #401d1d;
    margin-bottom: 50px;
}

.contact-info {
    font-size: 1.5rem;
    font-weight: 600;
    color: #401d1d;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.hero-image-container {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 100px;
    gap: 50px;
}

.contact-form-container {
    width: 500px;
    padding: 50px 25px;
    background-color: rgb(128, 168, 105);
    border-radius: var(--border-radius);
}

.form-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding-left: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-input {
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: var(--border-radius);
    padding: 0 15px;
    font-weight: 600;
}

.form-textarea {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #3e8e41;
}

.location-container {
    flex: 1;
    max-width: 800px;
}

.location-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.location-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.highlight {
    font-weight: bold;
    font-style: italic;
    color: var(--primary-color);
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-light);
}

.newsletter-small-heading {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.newsletter-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0;
}

.newsletter-subtext {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 20px auto 40px;
    line-height: 1.6;
}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscription-form input[type="email"] {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    background-color: #e0e0e0;
    font-size: 1rem;
    width: 300px;
    outline: none;
}

.subscription-form button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.subscription-form button:hover {
    background-color: #45a049;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-column {
    flex: 1 1 300px;
    margin: 20px;
    min-width: 250px;
}
.footer-column-1 {
    flex: 1 1 300px;
    margin-left:0;
    margin-bottom:10px;
    min-width: 250px;
    font-weight:bold;
}

.footer-logo {
    width: 120px;
    height:120px;
    margin-bottom:0;
    border-radius: 70px;

}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-description, .footer-column p, .footer-column a {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2f4f4f;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 50px;
    }
    
    .contact-section {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .contact-section {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 500px;
    }
    
    .location-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-navigation .menu-items {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        width: 100%;
        height: auto;
        max-width: 500px;
        border-radius: 50%;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .hero-section, .contact-section {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info {
        font-size: 1.2rem;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input[type="email"] {
        width: 100%;
    }
}

/* Maintenance Banner Styles */
.maintenance-banner {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #ff9800;
    color: black;
    padding: 3px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    overflow: hidden;
}

.top-banner {
    top: 0;
}

.bottom-banner {
    bottom: 0;
}

.banner-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Adjust body padding if you have a fixed header */
body {
    padding-top: 40px; /* Adjust this value based on your header height */
    padding-bottom: 40px; /* Space for bottom banner */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px; /* Above the bottom banner */
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #3e8e41;
    transform: translateY(-3px);
}

/* Adjust body padding if you have a fixed header */
body {
    padding-top: 40px; /* Adjust this value based on your header height */
    padding-bottom: 30px; /* Space for bottom banner */
}
/* Logo Link Styles */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* If you want the company name to be clickable too: */
.logo-and-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-and-name a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}