/* BASIC RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f5fdf7;
    color: #222;
}

/* GREEN THEME COLORS */
:root {
    --primary: #1e88e5;     /* Main blue */
    --secondary: #42a5f5;   /* Light blue */
    --dark: #0d47a1;        /* Dark blue */
}


/* HERO SECTION */
.hero {
    background: url('../images/hero/water-bg.jpg') center/cover no-repeat;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

/* Removed overlay so hero image is clean */
.hero::after {
    display: none;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.fade-in {
    animation: fadeIn 1.4s ease-out;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 20px;
}

.btn {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--secondary);
}

/* ABOUT – SPLIT SCREEN */
.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 10%;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.fade-left {
    animation: fadeLeft 1s ease forwards;
    opacity: 0;
}

.fade-right {
    animation: fadeRight 1s ease forwards;
    opacity: 0;
}

/* SERVICES */
.services {
    padding: 60px 10%;
    background: #e9f8ef;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.service-card.open {
    background: #f1fff7;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

/* DROPDOWN DESCRIPTION */
.service-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.4s ease;
    font-size: 14px;
    color: #444;
    margin-top: 10px;
}

.service-card.open .service-desc {
    max-height: 200px;
    opacity: 1;
}

/* CONTACT SECTION */
.contact {
    padding: 60px 10%;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-box {
    background: white;
    padding: 25px;
    width: 60%;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-box p {
    margin: 10px 0;
    font-size: 16px;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .contact-box {
        width: 90%;
    }
}

/* CLIENTS SECTION */
.clients {
    padding: 60px 10%;
    background: #ffffff;
    text-align: center;
}

.clients h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

/* Slider container */
.client-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track that moves */
.client-track {
    display: flex;
    width: max-content;
    animation: clientScroll 40s linear infinite; /* SLOW & SMOOTH */
}

/* Individual logo */
.client-logo {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    width: 120px;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* PERFECT INFINITE SCROLL */
@keyframes clientScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* LOGO */
.logo {
    width: 90px;
    margin-bottom: 15px;
}

/* CLEAN BRAND NAME – SINGLE COLOR */
.hero .brand-name {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff !important;

    /* Black outline for visibility */
    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         0 0 6px rgba(0,0,0,0.5) !important;
}


/* SLOGAN */
.slogan {
    font-size: 18px;
    margin: 10px 0 20px;
    font-weight: 500;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons img {
    width: 32px;
    cursor: pointer;
    transition: 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}


<<<<<<< HEAD
=======



>>>>>>> c7316fa (Local version with latest fixes)
