/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c4a5c; /* Changed to light navy blue */
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    color: #5cb85c; /* Changed to light green */
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo
{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5cb85c; /* Changed to light green */
    text-decoration: none;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2c4a5c; /* Changed to light navy blue */
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover {
    color: #5cb85c; /* Changed to light green */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(92, 184, 92, 0.8), rgba(70, 136, 71, 0.8)), 
                url('/images/hero-bg.jpeg') center/cover; /* Changed to green gradient */
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #f0f8f0; /* Light green-tinted white */
    max-width: 650px;
    margin: 0 auto 2rem;
}

/* Hero2 Section (for Contact Form Submission page) */
.hero2 {
    background: linear-gradient(rgba(92, 184, 92, 0.8), rgba(70, 136, 71, 0.8)), 
                url('/images/hero-bg.jpeg') center/cover; /* Changed to green gradient */
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.hero2 h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero2 p {
    font-size: 1.2rem;
    color: #f0f8f0; /* Light green-tinted white */
    max-width: 460px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5cb85c; /* Changed to light green */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #5cb85c;
}

.btn:hover {
    background-color: white;
    color: #2c4a5c;
    transform: translateY(-2px);
    border-color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c4a5c; /* Changed to light navy blue */
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: #f8fdf8; /* Very light green tint */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.flagship-banner {
    position: absolute;
    top: 22px;
    right: -30px;
    background-color: #5cb85c;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.photo-banner {
    position: absolute;
    top: 22px;
    right: -30px;
    background-color: white;
    color: #5cb85c;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-shadow: 
        0.25px 0 0 currentColor,
        -0.25px 0 0 currentColor,
        0 0.25px 0 currentColor,
        0 -0.25px 0 currentColor;
}

.photo-banner2 {
    position: absolute;
    top: 40px;
    right: -45px;
    background-color: white;
    color: #5cb85c;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-shadow: 
        0.25px 0 0 currentColor,
        -0.25px 0 0 currentColor,
        0 0.25px 0 currentColor,
        0 -0.25px 0 currentColor;
}


.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #5cb85c; /* Changed to light green */
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    padding: 2rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #468847; /* Changed to medium green */
    color: white;
}

.contact h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #a8e6a8; /* Light green */
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #f0f8f0; /* Light green-tinted white */
    margin-bottom: 1rem;
}

.contact-info i {
    color: #a8e6a8; /* Light green */
    margin-right: 10px;
}

.contact-info2 {
    padding: 2rem;
}

.contact-info2 h3 {
    color: #a8e6a8; /* Light green */
    margin-bottom: 1.5rem;
}

.contact-info2 p {
    color: #f0f8f0; /* Light green-tinted white */
    margin-bottom: 1rem;
}

.contact-info2 i {
    color: #a8e6a8; /* Light green */
    margin-right: 10px;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f0f8f0; /* Light green-tinted white */
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.9);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: #1b2e3a; /* Changed to light navy blue */
    color: #ecf0f1;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    color: rgb(235, 235, 235);
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #5cb85c; /* Changed to light green */
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.accent-color {
    color: #5cb85c; /* Changed to light green */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #5cb85c; /* Changed to light green */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #468847; /* Darker green on hover */
}

/* Additional button styles for forms */
button[type="submit"] {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5cb85c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #5cb85c;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Photo Gallery Styles */
.photo-gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.gallery-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/3.75;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Ensure consistent sizing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}