/* =========================================
   CATHODE RECYCLING PAGE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================
   GLOBAL
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #f6f9f7;
    color: #26352d;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   NAVIGATION BAR
   ========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(10px);

    box-shadow: 0 4px 20px rgba(0, 60, 30, 0.08);
}

.navbar {
    width: 92%;
    max-width: 1350px;

    height: 82px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo img {
    width: 145px;
    height: auto;
}


/* Navigation */

.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: block;

    padding: 10px 0;

    color: #26352d;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.nav-links > li > a:hover {
    color: #20a64a;
}


/* =========================================
   DROPDOWN MENU
   ========================================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    top: calc(100% + 15px);

    left: 50%;

    width: 245px;

    padding: 10px 0;

    list-style: none;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 60, 30, 0.15);

    opacity: 0;
    visibility: hidden;

    transform: translateX(-50%) translateY(10px);

    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;

    padding: 11px 20px;

    color: #405048;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #eef9f1;

    color: #15803d;

    padding-left: 25px;
}


/* =========================================
   SCHEDULE PICKUP BUTTON
   ========================================= */

.nav-btn {
    padding: 11px 22px !important;

    background: linear-gradient(
        135deg,
        #25b94f,
        #16873b
    );

    color: #ffffff !important;

    border-radius: 30px;

    box-shadow: 0 7px 18px rgba(22, 135, 59, 0.20);

    transition: all 0.3s ease !important;
}

.nav-btn:hover {
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(22, 135, 59, 0.30);
}


/* =========================================
   MAIN CONTENT
   ========================================= */

.about-page {
    width: 92%;
    max-width: 1350px;

    margin: 80px auto;

    display: grid;

    grid-template-columns: 270px 1fr;

    gap: 65px;

    align-items: start;
}


/* =========================================
   LEFT SIDEBAR
   ========================================= */

.about-sidebar {
    position: sticky;
    top: 110px;

    background: #ffffff;

    padding: 30px 24px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 70, 35, 0.08);
}

.about-sidebar h2 {
    color: #15803d;

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 22px;

    padding-bottom: 15px;

    border-bottom: 2px solid #e4f1e8;
}

.about-sidebar ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.about-sidebar ul li {
    margin-bottom: 5px;
}

.about-sidebar ul li a {
    display: block;

    padding: 12px 14px;

    color: #405048;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    border-radius: 8px;

    transition: all 0.3s ease;
}

.about-sidebar ul li a:hover {
    color: #15803d;

    background: #eef9f1;

    padding-left: 20px;
}


/* Active Cathode Recycling */

.about-sidebar ul li.active a {
    color: #15803d;

    background: #eaf7ee;

    font-weight: 700;

    border-left: 4px solid #25b94f;

    padding-left: 10px;
}


/* =========================================
   RIGHT CONTENT
   ========================================= */

.about-content {
    min-width: 0;
}

.about-content h1 {
    color: #173c28;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 12px;
}


/* Green line */

.title-line {
    width: 65px;

    height: 4px;

    background: #25b94f;

    border-radius: 10px;

    margin-bottom: 35px;
}


/* =========================================
   CRT IMAGE GALLERY
   ========================================= */

.ewaste-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 38px;
}

.gallery-item {
    overflow: hidden;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0, 60, 30, 0.08);
}

.gallery-item img {
    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* =========================================
   TEXT CONTENT
   ========================================= */

.about-content p {
    color: #52615a;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 25px;
}


/* =========================================
   CRT MATERIAL LIST
   ========================================= */

/*
   Your HTML has <li> directly inside <p>.
   This styling makes those items look like
   a clean environmental information list.
*/

.about-content p li {
    color: #52615a;

    font-size: 15px;

    line-height: 1.8;

    margin-left: 25px;

    padding-left: 5px;

    margin-bottom: 6px;
}


/* Green bullet */

.about-content p li::marker {
    color: #25b94f;

    font-size: 14px;
}


/* =========================================
   LARGE CRT IMAGE - ca2.jpg
   ========================================= */

.about-content > .gallery-item {
    margin-top: 30px;

    margin-bottom: 45px;
}

.about-content > .gallery-item img {
    width: 100%;

    height: 400px;

    object-fit: cover;
}


/* =========================================
   IMAGE HOVER
   ========================================= */

.about-content > .gallery-item:hover img {
    transform: scale(1.03);
}


/* =========================================
   REMOVE OLD VIDEO IF NOT USED
   ========================================= */

.video-box {
    display: none;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 18px;
    }

    .nav-links > li > a {
        font-size: 13px;
    }

    .about-page {
        grid-template-columns: 230px 1fr;

        gap: 40px;
    }

    .ewaste-gallery {
        gap: 15px;
    }

    .gallery-item img {
        height: 220px;
    }
}


/* =========================================
   TABLET / SMALL LAPTOP
   ========================================= */

@media (max-width: 900px) {

    .navbar {
        width: 90%;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links > li > a {
        font-size: 12px;
    }

    .nav-btn {
        padding: 9px 15px !important;
    }


    .about-page {
        width: 90%;

        grid-template-columns: 1fr;

        margin-top: 60px;

        gap: 40px;
    }


    .about-sidebar {
        position: relative;

        top: 0;
    }


    .about-sidebar ul {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 5px;
    }


    .ewaste-gallery {
        grid-template-columns: 1fr 1fr;
    }


    .gallery-item img {
        height: 240px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    header {
        height: auto;
    }

    .navbar {
        height: auto;

        padding: 15px 0;

        flex-direction: column;

        gap: 15px;
    }


    .logo img {
        width: 135px;
    }


    .nav-links {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 8px 14px;
    }


    .nav-links > li > a {
        font-size: 11px;
    }


    .dropdown-menu {
        left: 0;

        transform: translateY(10px);

        width: 220px;
    }


    .dropdown:hover .dropdown-menu {
        transform: translateY(0);
    }


    .about-page {
        width: 88%;

        margin: 50px auto;

        gap: 35px;
    }


    .about-sidebar {
        padding: 22px 18px;
    }


    .about-sidebar h2 {
        font-size: 20px;
    }


    .about-sidebar ul {
        grid-template-columns: 1fr;
    }


    .about-content h1 {
        font-size: 32px;
    }


    .title-line {
        margin-bottom: 25px;
    }


    .ewaste-gallery {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .gallery-item img {
        height: 250px;
    }


    .about-content p {
        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 20px;
    }


    .about-content p li {
        font-size: 14px;

        margin-left: 20px;
    }


    .about-content > .gallery-item img {
        height: 280px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .logo img {
        width: 125px;
    }

    .nav-links > li > a {
        font-size: 10px;
    }


    .about-page {
        width: 88%;
    }


    .about-content h1 {
        font-size: 28px;
    }


    .gallery-item img {
        height: 220px;
    }


    .about-content > .gallery-item img {
        height: 230px;
    }
}
/*==========================
Banner
==========================*/

.cwm-banner{
    width:100%;
    max-width:1200px;
    height:320px;
    margin:auto;
    position:relative;
    overflow:hidden;
    border-radius:8px;
    background:
    linear-gradient(rgba(231, 245, 236, 0.001),rgba(0, 90, 30, 0)),
    url("images/cathoderecyclingbanner.jpg");
    background-size:cover;
    background-position:center;
}

/* left panel */

.banner-content{
    position:absolute;
    left:0;
    top:0;
    width:420px;
    height:100%;
    background:linear-gradient(180deg,#16a34a,#59b52c);
    color:#fff;
    clip-path:polygon(0 0,85% 0,100% 50%,85% 100%,0 100%);
    display:flex;
    justify-content:center;
    flex-direction:column;
    padding:50px;
}

.banner-content h4{
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    color:#d8ffd2;
}

.banner-content h1{
    font-size:48px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:bold;
}

.banner-content p{
    font-size:17px;
    line-height:1.8;
    color:#f3f3f3;
}

.recycle-icon{

    position:absolute;
    right:90px;
    top:50%;
    transform:translateY(-50%);
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(4px);
}

.recycle-icon i{
    font-size:110px;
    color:#fff;
}

.overlay-circle{
    position:absolute;
    width:650px;
    height:650px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:-220px;
    top:-150px;
}

.overlay-circle2{
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:120px;
    bottom:-250px;
}

@media(max-width:900px){

.banner-content{
    width:100%;
    clip-path:none;
    text-align:center;
    padding:35px;
}

.recycle-icon{
    display:none;
}

.banner-content h1{
    font-size:36px;
}

}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    margin-top: 80px;

    background: #0b2418;

    color: white;
}

.footer-container {
    width: 92%;
    max-width: 1350px;

    margin: auto;

    padding: 70px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 50px;
}

.footer-logo {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: white;

    border-radius: 18px;
}

.footer-logo img {
    width: 65px;
}

.footer-about h3 {
    margin-bottom: 12px;

    font-size: 18px;
}

.footer-about p {
    max-width: 350px;

    color: #b9c9bf;

    font-size: 13px;
}

.footer h4 {
    margin-bottom: 18px;

    color: #75dc8f;

    font-size: 14px;
}

.footer-links a {
    display: block;

    margin-bottom: 10px;

    color: #c0ccc4;

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #65d983;

    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;

    color: #c0ccc4;

    font-size: 13px;
}

.footer-bottom {
    padding: 20px;

    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    color: #92a399;

    font-size: 12px;
}


