/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #00E676;
    /* Neon Green */
    --primary-hover: #00C853;
    --secondary-color: #1A237E;
    --bg-color: #ffffff;
    --card-bg: #f5f5f5;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --accent-color: #2979FF;

    --nav-height: 90px;
    --top-bar-height: 45px;

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

section {
    padding: 80px 10%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 1px;
}

/* --- Utilities --- */
.container {
    max-width: 1400px;
    /* Wider for the new header layout */
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    transition: var(--transition-speed);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #000;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 1.6;
}

/* --- Layout: Header (New Design) --- */
header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* Top Bar */
.top-bar {
    height: var(--top-bar-height);
    background: linear-gradient(90deg, #9ACD32 50%, #4CAF50 50%);
    /* Split Green Background */
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-info span.divider {
    opacity: 0.6;
}

.top-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.top-search input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    placeholder-color: rgba(255, 255, 255, 0.8);
}

.top-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.top-search button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Main Navbar - Sticky */
.navbar-container {
    background-color: #ffffff;
    backdrop-filter: none;
    /* Removed blur since it's solid white */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Lighter border for light theme */
    height: var(--nav-height);
    width: 100%;
    transition: var(--transition-speed);
}

.navbar-container.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /* Softer shadow */
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    /* Bolder for visibility */
    letter-spacing: 1px;
    color: #333;
    /* Dark text for white background */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Services dropdown */
.nav-dropdown-parent {
    position: relative;
}

.nav-dropdown-parent .nav-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform var(--transition-speed);
}

.nav-dropdown-parent:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #fff;
    min-width: 240px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.nav-dropdown-parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #333;
    border: none;
}

.nav-dropdown a:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    /* Dark border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    /* Dark icon */
    transition: var(--transition-speed);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    /* Dark hamburger */
}

/* --- Layout: Footer --- */
footer {
    background-color: #1a4d2e;
    padding: 60px 10% 20px;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col ul li {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    transition: transform var(--transition-speed), color var(--transition-speed);
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Home: Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Checks with previous hero height */
    overflow: hidden;
    background-color: #000;
    /* Fallback */
    padding: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

/* Hero banner: force light text on dark overlay */
.hero-slider .hero-content h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-slider .hero-content h1 span {
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slider .hero-content p {
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-transform: capitalize;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: var(--transition-speed);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: black;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

/* --- Features / Grid --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition-speed);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {

    /* Hide Top Bar on Mobile if needed, or stack it */
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 0;
    }

    .social-icons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        transform: translateY(-200%);
        /* hidden */
        transition: var(--transition-speed);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Mobile: show Services submenu when nav is open */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding-left: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
        max-height: none;
        background: transparent;
    }

    .nav-dropdown-parent .nav-arrow {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    color: #fff;
}

.whatsapp-float span {
    font-weight: 600;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Footer Social Icons Override (dark green footer) */
.footer-col .social-icons .social-icon {
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}

.footer-col .social-icons .social-icon:hover {
    border-color: #fff !important;
    color: var(--primary-color) !important;
    background: #fff;
}

/* --- Contact Page Form --- */
.contact-section {
    padding: 60px 10% 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--card-bg);
    padding: 45px 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.contact-form-card .form-subtitle {
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading-color);
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
}

.contact-form .form-control::placeholder {
    color: #888;
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.35);
}

.form-feedback {
    display: none;
    padding: 14px 18px;
    margin-bottom: 22px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback--success {
    display: block;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--heading-color);
}

.form-feedback--error {
    display: block;
    background: rgba(200, 50, 50, 0.1);
    border: 1px solid #c33;
    color: #b22;
}

.contact-sidebar .contact-info-card {
    background: var(--card-bg);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-sidebar .contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-sidebar .contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-sidebar .contact-info-card h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-sidebar .contact-info-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    margin-left: 34px;
}

.contact-sidebar .contact-info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-sidebar .contact-info-card p a:hover {
    text-decoration: underline;
}

.contact-map-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #e8e8e8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.contact-map-placeholder i {
    font-size: 2.5rem;
    margin-right: 12px;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: -1;
    }
}

/* --- Service Rows (Redesign) --- */
.service-rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Space between rows */
}

.service-row {
    display: flex;
    align-items: center;
    /* Middle Align */
    gap: 50px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition-speed);
}

.service-row:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-text {
    flex: 1;
    text-align: left;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-text ul li i {
    color: var(--primary-color);
}

.service-image {
    flex: 1;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .service-text {
        text-align: center;
    }

    .service-text ul li {
        justify-content: center;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }
}

/* --- Introduction section (no box, wide) --- */
.intro-section {
    padding: 80px 5%;
}

.intro-section .container--wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.intro-text {
    flex: 1;
}

.intro-lead {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-text > p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--text-color);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: none;
    border: none;
}

.intro-feature i {
    font-size: 1.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.intro-feature h4 {
    margin-bottom: 2px;
    margin-top: 0;
    font-size: 1.05rem;
    line-height: 1.25;
}

.intro-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.45;
}

.intro-image {
    flex: 1;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .intro-layout {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image {
        max-width: 100%;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }
}

/* --- Process Steps (card-style, reduced heading) --- */
.process-steps-section {
    background: linear-gradient(180deg, var(--card-bg) 0%, #fafafa 100%);
    padding: 80px 10%;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.35);
}

.process-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 230, 118, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.process-card:hover .process-card-icon {
    background: var(--primary-color);
    color: #000;
}

.process-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 28px 20px;
    }
}

/* --- Page Header (Internal Pages) --- */
.page-header {
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for banner background */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.page-header::after {
    display: none;
}

.page-header .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.15rem;
    color: #f0f0f0;
    letter-spacing: 0.5px;
    text-transform: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Premium Service Cards --- */
.services-section {
    position: relative;
    padding-top: 50px;
    /* Extra space after header fade */
}

.service-card-premium {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 230, 118, 0.15);
    border-color: var(--primary-color);
}

.service-card-premium:nth-child(even) {
    flex-direction: row-reverse;
}

.scp-content {
    flex: 1;
    padding: 60px;
}

.scp-image {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.scp-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 230, 118, 0.1);
    /* Green tint overlay */
    z-index: 1;
    transition: opacity 0.3s;
    opacity: 0;
}

.service-card-premium:hover .scp-image::before {
    opacity: 1;
}

.scp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .scp-image img {
    transform: scale(1.1);
}

.scp-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.scp-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.scp-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.scp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.scp-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 900px) {

    .service-card-premium,
    .service-card-premium:nth-child(even) {
        flex-direction: column;
    }

    .scp-image {
        width: 100%;
        height: 300px;
    }

    .scp-content {
        padding: 40px 30px;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* --- Materials Grid Redesign --- */
.materials-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    padding: 100px 10%;
}

/* Abstract decorations */
.decoration-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.dec-1 {
    top: -200px;
    left: -200px;
}

.dec-2 {
    bottom: -200px;
    right: -200px;
}

.materials-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.material-category {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.material-category:hover {
    background: #eeeeee;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.material-category h3 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.material-category h3::before {
    content: '';
    display: block;
    width: 5px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 5px;
}

.material-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.material-pill {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.material-pill:hover {
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

.material-pill i {
    font-size: 0.8rem;
}

/* --- What is E-waste Section --- */
.ewaste-education {
    background: var(--card-bg);
}

.split-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.ewaste-text {
    flex: 1;
}

.ewaste-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 230, 118, 0.2);
}

.ewaste-item:hover {
    border-left-color: var(--primary-color);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.ewaste-item .content h4 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.ewaste-item .content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.citation {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    font-size: 0.9rem;
}

.ewaste-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ewaste-visuals .main-img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.ewaste-visuals:hover .main-img {
    filter: grayscale(0%);
}

.visual-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-icons i {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.15);
    transition: color 0.3s;
}

.ewaste-education:hover .visual-icons i {
    color: var(--primary-color);
}

/* --- Home Page: Our Services image boxes --- */
.home-services-section {
    padding: 80px 10%;
    background-color: var(--bg-color);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.home-service-box {
    display: block;
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #333;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.home-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: background 0.35s ease;
}

.home-service-box:hover .home-service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 230, 118, 0.25) 100%);
}

.home-service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 50px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    z-index: 2;
    transition: color 0.3s ease;
}

.home-service-box:hover .home-service-title {
    color: #fff;
}

.home-service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-service-box:hover .home-service-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service-box {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-service-box {
        height: 220px;
    }

    .home-service-title {
        font-size: 1.1rem;
        padding: 20px 16px 46px;
    }
}

/* --- Industries Grid --- */
.industries-section {
    padding: 80px 10%;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.industry-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: #eeeeee;
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 0;
    font-weight: 500;
}

/* --- Process Timeline (Bulk Generators) --- */
.process-timeline {
    position: relative;
    padding: 80px 10%;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item .content {
    padding: 20px 30px;
    background-color: var(--card-bg);
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.timeline-item:hover .content {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.timeline-item .content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.timeline-item .content p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.timeline-item .content i {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 20px;
    opacity: 0.5;
}

.timeline-item.left .content i {
    left: 20px;
}

.timeline-item.right .content i {
    right: 20px;
}

/* Timeline Circles */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
    top: 50%;
    border-radius: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-item.right::after {
    left: -10px;
}

/* --- Help Grid (Services) --- */
.help-section {
    padding: 80px 10%;
}

.help-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.help-item {
    text-align: center;
    width: 220px;
}

.help-item .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.help-item:hover .icon-circle {
    background: var(--primary-color);
    transform: rotate(360deg);
}

.help-item:hover .icon-circle i {
    color: #000;
}

.help-item .icon-circle i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.help-item h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-color);
}

.center-circle {
    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 10px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.2);
}

.center-circle img {
    width: 120px;
    margin-bottom: 15px;
}

.center-circle span {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
}

/* --- Compliance Warning --- */
.compliance-warning {
    background: #250000;
    /* Dark Red Background */
    position: relative;
    overflow: hidden;
    padding: 80px 10%;
}

.warning-banner {
    text-align: center;
    margin-bottom: 50px;
}

.warning-banner h2 {
    color: #ff5252;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.warning-banner p {
    color: #ff8a80;
    font-size: 1.2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-left: 5px solid #ff5252;
    border-radius: 5px;
}

.news-card h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.news-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* --- Responsive Adjustments for New Sections --- */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }

    .help-grid {
        flex-direction: column;
    }

    .center-circle {
        order: -1;
        width: 200px;
        height: 200px;
    }

    .center-circle img {
        width: 80px;
    }

    .center-circle span {
        font-size: 1.2rem;
    }
}

/* --- Comprehensive Media Queries (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    section {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    /* typography scaling */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-header {
        min-height: 320px;
        padding: 100px 15px 50px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Layout adjustments */
    .grid-3,
    .grid-4,
    .news-grid,
    .materials-wrapper {
        grid-template-columns: 1fr;
        /* Stack everything on mobile */
    }

    .service-card-premium {
        flex-direction: column !important;
        /* Always stack */
        margin-bottom: 40px;
    }

    .scp-image {
        height: 250px;
    }

    .scp-content {
        padding: 30px 20px;
    }

    .scp-features {
        grid-template-columns: 1fr;
        /* Stack features */
    }

    .warning-banner h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .warning-banner p {
        font-size: 1rem;
    }

    .timeline {
        margin: 30px 0;
    }

    .help-item {
        width: 100%;
    }

    /* Form adjustments */
    input,
    select,
    textarea {
        font-size: 16px;
        /* Prevent zoom on iPhone */
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-links {
        width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}