/* Color Palette from your Business Card */
:root {
    --dark-bg: #121212;
    --eco-green: #8CC63F; /* Vibrant Lime Green */
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-white); background-color: var(--dark-bg); scroll-behavior: smooth; }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Header */
header { background: rgba(18, 18, 18, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2.5rem; font-weight: bold; }
.logo .eco { color: var(--eco-green); }
.btn-nav { background: var(--eco-green); color: #000; padding: 10px 20px; border-radius: 20px; text-decoration: none; font-weight: bold; }

/* Hero Section */
.hero { 
    height: 80vh; 
    display: flex; 
    align-items: center; 
    background: linear-gradient(135deg, var(--dark-bg) 60%, var(--eco-green) 180%);
    position: relative;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--eco-green); }
.hero p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 30px; max-width: 600px; }

/* Buttons */
.btn-main { background: var(--eco-green); color: #000; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-right: 15px; display: inline-block; }
.btn-outline { border: 2px solid var(--eco-green); color: var(--eco-green); padding: 13px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; }

/* Services Grid */
.services { padding: 80px 20px; text-align: center; }
.services h2 { margin-bottom: 50px; font-size: 2.5rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #1e1e1e; padding: 40px; border-radius: 10px; border-bottom: 4px solid var(--eco-green); transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.card h3 { margin-bottom: 15px; color: var(--eco-green); }

/* Footer */
footer { background: #000; padding: 60px 0 20px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 40px; }
.social-link { color: var(--eco-green); text-decoration: none; font-weight: bold; }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
/* Circular Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.circular-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--eco-green);
    box-shadow: 0 0 10px rgba(140, 198, 63, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    line-height: 1.1;
}

/* Work Carousel Section */
.work-section {
    padding: 80px 20px;
    text-align: center;
}
#work h1 {
    color: var(--eco-green);
}
.carousel {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    width: calc(300px * 8); /* Adjust based on number of slides */
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 400px;
    padding: 0 10px;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #333;
}

/* Continuous Scroll Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 4)); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .logo-text { display: none; } /* Keeps header clean on small phones */
    .slide { width: 280px; }
}
/* Enhanced Logo Text Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-transform: uppercase; /* Makes the brand look more established */
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 1.8rem; /* Significantly larger */
    font-weight: 800;    /* Extra bold */
    color: var(--text-white);
    line-height: 1;
}

.company-sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 2px;
}

/* Specifically highlighting 'Bathrooms' in your Eco Green */
.highlight {
    color: var(--eco-green);
    text-shadow: 0 0 5px rgba(140, 198, 63, 0.2); /* Subtle glow effect */
}

/* Mobile Tweak - keeps the text readable on smaller screens */
@media (max-width: 480px) {
    .company-name { font-size: 1.4rem; }
    .company-sub { font-size: 0.9rem; }
    .circular-logo { width: 50px; height: 50px; }
}
/* Container for the links */
.social-wrapper {
  display: flex;
  align-items: center;
  gap: 24px; /* Space between Facebook and Google */
  flex-wrap: wrap; /* Prevents breaking on mobile */
  font-family: sans-serif;
}

/* Base style for each link */
.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.8; /* Subtle fade when hovering */
}

/* Icon spacing */
.social-link svg {
  margin-right: 8px;
}

/* Brand Colours */
.fb-brand { color: #0866FF; }
.go-brand { color: #FFFFFF; }

)
.summary-section {
    padding: 60px 20px;
    text-align: center;
}

.summary-card {
    background: #1e1e1e; /* Matches your services cards */
    padding: 50px 40px;
    border-radius: 10px;
    border-bottom: 4px solid var(--eco-green);
    transition: transform 0.3s;
    max-width: 900px;
    margin: 0 auto; /* Centers the card */
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-card h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #fff;
}

.summary-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.summary-card strong {
    color: var(--eco-green);
}

.summary-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--eco-green);
    color: var(--eco-green);
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* The Animation Definition */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); } /* How high it jumps */
}

.btn-nav {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--eco-green);
  color: #1e1e1e;
  text-decoration: none;
  border-radius: 35px;
  font-weight: bold;
  transition: background 0.3s; /* Smooth color change */
}

/* The Hover Effect */
.btn-nav:hover {
  background-color: #ffffff;
  /* Runs the bounce animation once over 0.5 seconds */
  animation: bounce 0.5s ease-in-out; 
}

/* This pushes the logo and button-group apart */
.nav-flex {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 0;
}

/* This keeps the two buttons side-by-side with a gap */
.nav-buttons {
    display: flex;
    gap: 15px; 
    align-items: center;
}

/* Ensures the logo group stays aligned */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive: Stack them on mobile if they get too squashed */
@media (max-width: 600px) {
    .nav-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

