@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: 'Poppins';
    scroll-behavior: smooth;
}
.no-scroll {
    overflow: hidden;
}

/* Custom Properties for Colors */
:root {
    --primary-green: #087e46;
    --light-green: #bdffca;
    --dark-green: #016b5e;
    --white: #ffffff;
    --black: #000000;
    --header-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(100, 220, 123, 0.8), rgba(0, 168, 107, 0.9));
    --body-gradient: radial-gradient(circle, rgb(255, 255, 255), rgba(189, 255, 202, 0.7), rgba(67, 209, 125, 0.85), rgb(8, 126, 70));
    --content-gradient: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(199, 249, 204, 0.7), rgb(39, 174, 96), rgba(0, 104, 94, 0.8), rgb(1, 75, 67));
    
}
/* ==================== GENERAL RESPONSIVE IMPROVEMENTS ==================== */

html, body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}
/* Header Styles */
.head-nav-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#F8F9FA;
    padding: 5px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(5, 5, 5, 0.5);
    height: auto;

}
.nav-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo::before {
    content: '';
    position: absolute;
    width: 5.5em;
    height: 5.5em;
    background: rgba(0,0,0,1);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}
.nav-logo img{
    width: 5em;
    height: 5em;
    animation: spin 15s linear infinite;
    border-radius: 50%;
  
    
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }   
    
}
nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

nav li {
    list-style: none;
}

nav li a {
    text-decoration: none;
    color: #007e19;
    font-size: 20px;
    font-weight: 500px;
    transition: color 0.3s;
    font-style: 'Playfair';
}
.hover-animation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #e1e1e1;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}
.hover-animation a:focus,
.hover-animation a:hover {
    color: black;
}

.hover-animation a:focus:after,
.hover-animation a:hover:after {
    width: 100%;
    left: 0%;
}

.hover-animation a:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: black;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}



.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 2.5em; 
    height: 2.5em;
    transition: width 0.4s ease-in-out;
    overflow: hidden;
    border-radius: 20px;
    background-color: white;
    border: 1px solid #ccc;
  }

    .search-container:hover,
    .search-container:focus-within {
    width: 12.5em; 
    }


    .search-container:hover .search-icon,
    .search-container:focus-within .search-icon {
    opacity: 0;
    }
  
  .search-container:hover {
    width: 12.5em;
  }
  
  .search-input {
    width: 30em;
    padding: 10px;
    border: none;
    outline: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .search-container:hover .search-input,
  .search-container:focus-within .search-input {
    
    opacity: 1;
  }
  
  .search-icon {
    position: absolute;
    left: 10px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 100px;
  }
.search-active {
    transition: background-color 0.5s ease;
    background-color: rgba(76, 175, 80, 0.1);
}

.search-highlight {
    transition: all 0.3s ease;
}


.search-input:not(:placeholder-shown) {
    opacity: 1 !important;
}

/* Hero Section */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('capitol.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.section-name {
    opacity: 0;
    z-index: 100;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-name.show {
    opacity: 1;
    transform: translateY(0);
}

#home {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-circle {
    position: absolute;
    background: rgba(50, 205, 50, 0.396);
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-name h2 {
    font-size: 5em;
    margin-bottom: 10px;
    text-shadow: 2px 5px 2px #000000;
}

.section-name p {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 5px 2px #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 100;
    margin-top: 1rem;
}

/* Button Styles */
.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-53 {
    -webkit-tap-highlight-color: transparent;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 100%;
    line-height: 1.5;
    margin: 0 auto; 
    padding: 0;
}

.btn-53:disabled {
    cursor: default;
}

.btn-53:-moz-focusring {
    outline: auto;
}

.btn-53 svg {
    display: block;
}

.btn-53 [hidden] {
    display: none;
}

.btn-53 {
    border: 1px solid;
    border-radius: 999px;
    box-sizing: border-box;
    display: block;
    font-weight: 900;
    overflow: hidden;
    padding: 1.2rem 3rem;
    position: relative;
    text-transform: uppercase;
}

.btn-53 .original {
    background: #fff;
    color: #000;
    display: grid;
    inset: 0;
    place-content: center;
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.btn-53:hover .original {
    transform: translateY(100%);
}

.btn-53 .letters {
    display: inline-flex;
    justify-content: center; 
}

.btn-53 span {
    opacity: 0;
    transform: translateY(-15px);
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.btn-53 span:nth-child(2n) {
    transform: translateY(15px);
}

.btn-53:hover span {
    opacity: 1;
    transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
    transition-delay: 0.1s;
}

.btn-53:hover span:nth-child(3) {
    transition-delay: 0.2s;
}

.btn-53:hover span:nth-child(4) {
    transition-delay: 0.3s;
}

.btn-53:hover span:nth-child(5) {
    transition-delay: 0.4s;
}

.btn-53:hover span:nth-child(6) {
    transition-delay: 0.5s;
}
@media (max-width: 992px) {
    .section-name h2 {
        font-size: 2.5em;
    }
    
    .section-name p {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .section-name h2 {
        font-size: 2.5em;
    }
    
    .section-name p {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .section-name {
        width: 90%;
    }
    
    .section-name h2 {
        font-size: 2.5em;
        text-align: center;
        width: 100%;
    }
    
    .section-name p {
        font-size: 1rem;
        padding: 0;
        margin: 0.5em 0;
        text-align: center;
        width: 100%;
    }
    
    .button-center {
        margin-top: 1.5em;
        width: 100%;
    }
    
    .btn-53 {
        padding: 0.8rem 2rem;
        margin: 0 auto;
    }
    
    .original {
        font-size: 0.8rem;
    }
    
    .letters span {
        font-size: 0.8rem;
    }
    
    .letters {
        justify-content: center;
        width: 100%;
    }
    .container {
        padding: 2em !important;
       
    }
}

.body-color {
background-color: #ffffff;
}
/*================== carousel Gallery ====================*/
.container {
    display: flex;
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 5em;
    gap: 4em;
    flex-direction: column;
}

/* Image Gallery */
.images-column-left {
    flex: 1;
    max-width: 600px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-container-2 {
    height: 1100px;
    overflow: hidden;
}

/* Gallery styles */
.gallery {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

/* Image animations */
.gallery img {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.gallery img, .small {
    width: 100%;
}

.gallery img.wide {
    width: 100%;
}
.gallery img.animate-in {
    transform: translateX(0);
    opacity: 1;
}
.gallery img:nth-child(1) { transition-delay: 0.1s; }
.gallery img:nth-child(2) { transition-delay: 0.2s; }
.gallery img:nth-child(3) { transition-delay: 0.3s; }
.gallery img:nth-child(4) { transition-delay: 0.4s; }
.gallery img:nth-child(5) { transition-delay: 0.5s; }
.gallery img:nth-child(6) { transition-delay: 0.6s; }
.gallery img:nth-child(7) { transition-delay: 0.7s; }
.gallery img:nth-child(8) { transition-delay: 0.8s; }
.gallery img:nth-child(9) { transition-delay: 0.9s; }
.gallery img:nth-child(10) { transition-delay: 1.0s; }
.gallery img:nth-child(11) { transition-delay: 1.1s; }
.gallery img:nth-child(12) { transition-delay: 1.2s; }
.gallery img:nth-child(13) { transition-delay: 1.3s; }
.gallery img:nth-child(14) { transition-delay: 1.4s; }
.gallery img:nth-child(15) { transition-delay: 1.5s; }
.gallery img:nth-child(16) { transition-delay: 1.6s; }

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    grid-auto-rows: 200px;
    gap: 10px;
    width: 100%;
    animation: scroll 30s linear infinite;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.wide {
    grid-column: span 2;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
/*================== carousel Gallery End ====================*/

/*RA 9003 Content */
.container-2-responsive {
    margin-top: 10em;
}
.container-2 {
    flex: 1;
    opacity: 1;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.container-2.show {
    opacity: 1;
    transform: translateX(0);
}
@keyframes slide {
    from {
        opacity: 0;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(50px);
    }
}

.images-column-right {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 5px 5px 15px 5px #000, 5px 5px 15px 5px rgba(0,0,0,0); 
}

.images-column-right h3 {
    color: #6f8044;
    font-size: 24px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px #7a807b;
}

.images-column-right h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px #7a807b;
}

.images-column-right h1 span {
    display: block;
    font-size: 40px;
    color: var(--dark-green);
}

.container-3 {
    padding: 20px 0;
}

.garcia, .sumogat {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.rappy img {
    width: 15em;
    height: 20vh;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.rappy img:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px 5px #000, 5px 5px 15px 5px rgba(0,0,0,0); 
}

.troy {
    flex: 1;

}

.troy h2 {
    font-size: 30px;
    font-weight: 300px;
    margin-bottom: 15px;
    color: var(--black);
}
.troy ul {
    padding-right: 50px;
    padding-left: 50px; 
    margin-top: 10px;
}

.troy li {
    list-style-type: circle;
    margin-bottom: 10px; 
    font-size: 1.5em;
}
.troy p {
    font-size: 1.5em;
    position: relative;
}
@media (max-width: 768px) {
    .troy ul {
        padding-right: 15px;
        padding-left: 15px;
        justify-content: flex-start !important;
    }
    .container-2-responsive {
        margin-top: 2em;
    }
}
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: var(--header-gradient);
    z-index: 999; 
    transition: transform 0.4s ease-in-out;
    padding: 70px 20px 20px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateY(-100%);
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    
}

.side-nav.active {
    transform: translateY(0); 
}
.side-nav li{
    list-style-type: none;
}
.side-nav a{
    text-decoration: none;
    font-family: 'Playfair Display';
    color: #000000;
    font-size: 30px;
    font-weight:700;
    margin-top: 12em;
}

/* Responsive base styles */
.blog-video-section {
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #e6f3e6 0%, #e6f0f6 100%);
    overflow-x: hidden;
    padding: 20px;
}

/* Responsive header */
.blog-header header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}
.blog-header p {
    font-size: clamp(16px, 3vw, 24px);
}
.blog-header h1 {
font-size: clamp(24px, 5vw, 40px);
position: relative;
display: inline-block;
margin-bottom: 2.5rem;
}
.blog-header h1::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; 
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 1px;
}
.blog-header h1::before {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    z-index: 1;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
}



    .blog, .blog-col-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .blog > *, .blog-col-2 > * {
        align-self: flex-start;
    }

    .videos {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }

    .video-border {
        border: solid 2px #ccc;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.8);
        transition: transform 0.3s ease;
    }

    .video-border:hover {
        transform: scale(1.03);
    }

    /* Responsive video */
    video {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
    }

    /* Responsive typography */
    h5 {
        margin: 10px 0;
        text-align: center;
        font-size: clamp(20px, 4vw, 30px);
    }

    p {
        text-align: left;
        margin: 10px 0;
        font-size: clamp(14px, 3vw, 18px);
        line-height: 1.6;
    }
    .blog > *, .blog-col-2 > * {
        align-self: flex-start;
    }

    /* Floating Recycle Icons Animation */
    .floating-recycle-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: -1;
    }

    .floating-recycle-icon {
        position: absolute;
        opacity: 0.5;
        transition: all 0.5s ease;
    }

    @keyframes float {
        0% { 
            transform: translateX(0) translateY(0) rotate(0deg);
        }
        50% { 
            transform: translateX(100px) translateY(-70px) rotate(45deg);
        }
        100% { 
            transform: translateX(-60px) translateY(100px) rotate(-45deg);
        }
    }

    @keyframes spin {
        0% { 
            transform: rotate(0deg);
        }
        100% { 
            transform: rotate(360deg);
        }
    }
    /* ==================== GALLERY SECTION ==================== */


    .gallery-section {
        min-height: 300vh;
        background-color: #ffffff;
        padding: 20px;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    }

    .gallery-header {
        margin-bottom: 5em;
        text-align: center;
        width: 100%;
    }
    .gallery-header h1 {
        font-size: clamp(24px, 5vw, 40px);
        position: relative;
        display: inline-block;
        margin-bottom: 2.5rem; 
    }
    .gallery-header h1::after {
        content: "";
        position: absolute;
        bottom: -17px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%; 
        height: 2px;
        background-color: var(--primary-green);
        border-radius: 1px;
    }
    .gallery-header h1::before {
        content: "";
        position: absolute;
        bottom: -21px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background-color: #333;
        border-radius: 50%;
        z-index: 1;
        animation: pulseDot 2s infinite ease-in-out;
    }
    @keyframes pulseDot {
        0% {
            transform: translateX(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
        }
        50% {
            transform: translateX(-50%) scale(1.2);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }
        100% {
            transform: translateX(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
        }
    }
    

    .wrapper img {
        width: 30em;
        max-width: 100%;
        height: 50vh;
        margin: 5px;
        transition: 0.3s ease-in-out;
        object-fit: cover;  
        display: flex;
        gap: 5em;
        
    }

    .wrapper img:hover {
        transform: scale(1.1) !important; 
        box-shadow: 5px 5px 15px 5px #000, 5px 5px 15px 5px rgba(0,0,0,0);
        z-index: 10; 
    }

    /* gallery media querry */
    @media screen and (max-width: 1200px) {
        .wrapper img {
            max-width: 100%;
        }
    }

    @media screen and (max-width: 992px) {
        .wrapper img {
            max-width: 100%;
        }
    }

    @media screen and (max-width: 768px) {
        .wrapper img {
            max-width: 100%;
            height: auto;
        }
    }

    @media screen and (max-width: 576px) {
        .gallery-header {
            margin-bottom: 2em;
        }

        .wrapper img {
            width: 100%;
            height: auto;
        }
    }

    /*gallery button more*/
    .more-img-link {
        display: flex;
        justify-content: center;
        margin: 5em;
    }
    .more-img-link a {
        text-decoration: none;

    }
    .btn-more {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
        border: none;
        outline: none;
        border-radius: 0.4rem;
        cursor: pointer;
        text-transform: uppercase;
        background-color: rgb(14, 14, 26);
        color: rgb(234, 234, 234);
        font-weight: 700;
        transition: 0.6s;
        box-shadow: 0px 0px 60px #27651f;
        -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
        white-space: nowrap; 
        display: inline-block; 
    }
    
    .btn-more:active {
        scale: 0.92;
    }

    .btn-more:hover {
        background: rgb(2, 78, 22);
        background: linear-gradient(270deg, rgba(2, 78, 18, 0.681) 0%, rgba(31, 232, 85, 0.873) 60%);
        color: rgb(4, 38, 7);
    }

    @media screen and (max-width: 992px) {
        .btn-more {
            font-size: 1.1rem;
            padding: 0.9rem 2.2rem;
            -webkit-box-reflect: below 8px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
            box-shadow: 0px 0px 40px #1f6526;
        }
        
        .more-img-link {
            margin: auto;
        }
    }

    @media screen and (max-width: 768px) {
        .btn-more {
            font-size: 1rem;
            padding: 0.8rem 2rem;
            -webkit-box-reflect: below 6px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
            box-shadow: 0px 0px 30px #1f6539;
        }
        
        .more-img-link {
            margin: auto;
        }
    }

    @media screen and (max-width: 576px) {
        .btn-more {
            font-size: 0.9rem;
            padding: 0.7rem 1.8rem;
            -webkit-box-reflect: below 5px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
            box-shadow: 0px 0px 20px #1f652e;
        }
        
        .more-img-link {
            margin: auto;
            overflow-x: auto;
            width: 100%;
        }
    }

    @media screen and (max-width: 400px) {
        .btn-more {
            font-size: 0.8rem;
            padding: 0.6rem 1.5rem;
            -webkit-box-reflect: below 4px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
            box-shadow: 0px 0px 15px #1f6530;
            min-width: max-content;
        }
        
        .more-img-link {
            margin: auto;
        }
    }
    .first-column, 
    .second-column, 
    .third-column,
    .fourth-column,
    .fifth-column,
    .sixth-column {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    /* ============================ Footer Section ========================================= */
    .footer {
        display: flex;
        flex-direction: column; 
        padding: 2em;
        background-color: #292828;
    }

    .footers-header h1 {
        color: #35bf40;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footers-header ul {
        margin-top: 1em;
        list-style: none;
        padding-left: 0; 
    }

    .footers-header li {
        margin-bottom: 0.5em; 
    }

    .footers-header a {
        color: white;
        text-decoration: none;
    }
    .link-container a:hover {
        margin-left: 15px;
        background-color: #24262a;
        transition: 0.2s ease-in-out;
        padding-right: 15px;
    }
    .header-footer {
        opacity: 0.6;
        color: #f8f9f9;
        font-size: larger;
        font-weight: lighter;
    }

    @media (min-width: 480px) {
        .example-2 .icon-content a {
            width: 45px;
            height: 45px;
        }
        
        .example-2 .icon-content a svg {
            width: 26px;
            height: 26px;
        }
    }

    @media (min-width: 768px) {
        .footer {
            flex-direction: row !important;
            justify-content: space-between !important;
        }
        .example-2 {
            justify-content: flex-start; 
        }
        
        .example-2 .icon-content a {
            width: 50px;
            height: 50px;
        }
        
        .example-2 .icon-content a svg {
            width: 30px;
            height: 30px;
        }
    }


    @media (max-width: 480px) {
        .example-2 .icon-content .tooltip {
            left: 50%; 
            transform: translateX(-50%) translateY(-100%);
            white-space: nowrap; 
        }
    }
    @media (min-width: 992px) {
        .footers-header h1 {
            font-size: 2rem;
        }
    }
    ul {
        list-style: none;
    }
    
    .soc-med-link {
        width: 100%;
        margin: 1rem 0;
    }

    .example-2 {
        display: flex;
        flex-wrap: wrap; 
        justify-content: flex-start; 
        gap: 0.5rem; 
    }
    .example-2 .icon-content {
        margin: 0 10px;
        position: relative;
    }
    .example-2 .icon-content .tooltip {
        position: absolute;
        top: 20px;
        left: 40%;
        transform: translateY(-100%);
        color: #fff;
        padding: 6px 10px;
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    .example-2 .icon-content:hover .tooltip {
        opacity: 1;
        visibility: visible;
        top: 5px;
    }
    .example-2 .icon-content a {
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #4d4d4d;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }
    .example-2 .icon-content a:hover {
        box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
    }
    .example-2 .icon-content a svg {
        position: relative;
        z-index: 1000;
        width: 24px;
        height: 24px;
    }
    .example-2 .icon-content a:hover {
        color: white;
    }
    .example-2 .icon-content a .filled {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #000;
        transition: all 0.3s ease-in-out;
    }
    .example-2 .icon-content a:hover .filled {
        height: 100%;
    }
    
    .example-2 .icon-content a[data-social="linkedin"] .filled,
    .example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
        background-color: #0274b3;
    }
    
    .example-2 .icon-content a[data-social="github"] .filled,
    .example-2 .icon-content a[data-social="github"] ~ .tooltip {
        background-color: #24262a;
    }
    .example-2 .icon-content a[data-social="instagram"] .filled,
    .example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
        background: linear-gradient(
        45deg,
        #405de6,
        #5b51db,
        #b33ab4,
        #c135b4,
        #e1306c,
        #fd1f1f
        );
    }
    .example-2 .icon-content a[data-social="youtube"] .filled,
    .example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
        background-color: #ff0000;
    } 
    .example-2 .icon-content a[data-social="facebook"] .filled,
    .example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
        background-color: #1877f2;
    }
    .icon-content {
        transition: transform 0.3s ease-in-out;
    }
    .responsive-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .flex-row-responsive {
        display: flex;
        flex-wrap: wrap;
    }
    .flex-col-responsive {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }
    .responsive-image {
        max-width: 100%;
        height: auto;
    }
    .responsive-text {
        font-size: clamp(16px, 4vw, 24px);
        line-height: 1.6;
    }
    .side-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px;
    }

    .side-nav.active {
        transform: translateY(0);
    }

    .side-nav li {
        margin: 15px 0;
    }

    .side-nav a {
        font-size: 1.5rem;
        color: #000;
        transition: color 0.3s;
    }

    .side-nav a:hover {
        color: var(--primary-green);
    }


    /* ==================== HERO SECTION ==================== */
    section#home {
        padding: 20px;
        background-position: center;
        background-size: cover;
    }

    section h2 {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    section p {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }

    /* ==================== MAIN CONTENT AREAS ==================== */
    .images-column-left, 
    .container-2 {
        max-width: 100%;
        width: 100%;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 120px;
        animation: scroll 40s linear infinite;
    }
    .rappy img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    /* ==================== CAROUSEL SECTION ==================== */
    /* Waste Categories Section */
    .solid-waste-category {
        text-align: center;
        padding: 50px 20px;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    .solid-waste-category.show {
        opacity: 1;
        transform: translateY(0);
    }
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .carousel-swc {
        margin-top: 10em;
        background-color: #ecf0ed;
        overflow: hidden;
    }
    .swc-header {
        font-size: 50px;
        margin-bottom: 40px;
        color: var(--black);
        position: relative;
        display: inline-block;
    }
    
    .swc-header::after {
        content: "";
        position: absolute;
        bottom: -25px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-green);
        border-radius: 1px;
    }
    
    .swc-header::before {
        content: "";
        position: absolute;
        bottom: -29px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background-color: #333;
        border-radius: 50%;
        z-index: 1;
        animation: pulseDot 2s infinite ease-in-out;
    }
    
    @keyframes pulseDot {
        0% {
            transform: translateX(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
        }
        50% {
            transform: translateX(-50%) scale(1.2);
            box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
        }
        100% {
            transform: translateX(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
        }
    }
    .carousel-container {
        height: auto;
        max-width: 100%;
        width: 100%;
        margin: auto;
        padding: 5em;
        overflow: visible; 
    }
    @media (max-width: 300px) {
        .carousel-container{
            padding: 1em;
            width: 100%;
            max-width: 100%;
            margin: auto;
        }  
            
    }

    .carousel {
        display: flex;
        overflow: visible;
    }

    .slide {
        position: relative;
        padding: 10px;
        margin-bottom: 80px;
        display: flex;
        flex-direction: column;
        align-items: center; 
        opacity: 0;
        transform: translateX(50px);
    }

    .slide img {
        width: 100%;
        height: 400px !important;
        z-index: 1;
        position: relative;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        box-shadow 0.5s ease;
    }

    blockquote {
        position: relative;
        margin-top: -40px; 
        margin-left: auto; 
        margin-right: auto; 
        font-style: normal;
        font-size: 20px;
        background: #e4e6da;
        min-height: 100px;
        max-width: 80%; 
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        box-shadow: 5px 5px 25px 5px rgba(0,0,0,0.2);
        z-index: 2;
        box-sizing: border-box; 
        padding: 40px; 
        text-align: left;
        transition: transform 0.3s ease;
    }
    .slick-slide {
        overflow: visible !important;
    }

    .text-body {
        margin-top: 10px;
        text-align: left;
        display: flex;
        justify-content: center;
    }
    .text-body ul {
        list-style-type: circle;
    }
    .slick-prev, .slick-next {
        background-color: var(--primary-green) !important;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        z-index: 10;
    }


    .slick-prev:hover, .slick-next:hover {
        background-color: var(--light-green) !important;
    }

    .slick-dots li button:before {
        color: var(--primary-green);
    }
    .slide:hover blockquote {
        transform: translateY(-5px);
    }

    /* For smoother animations */
    .carousel {
        will-change: transform;
    }

    /*============================ RA 9003 Content =========================================*/
    .third-section {
        padding: 9%;
        opacity: 0 !important;
        transform: translateY(50px) !important;
        transition: opacity 1s ease, transform 1s ease !important;
    }

    .third-section.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .description-right h2 {
        font-size: 25px;
        font-style: italic;
        margin-bottom: 1em;
        color: #88b44e;
    }

    .description-right h3 {
        font-size: 3em;
        margin-bottom: 75px;
    }

    .description-right p {
        font-size: 20px;
    }

    .description-right li {
        list-style-type: none;
        font-size: 20px;
    }

    .third-section-hero {
        display: flex;
        justify-content: center;
        margin-bottom: 5em;
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: opacity 1.2s ease, transform 1.2s ease !important;
        transition-delay: 0.3s !important;
    }

    .third-section.visible .third-section-hero {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .third-section.visible .third-section-hero:nth-child(2) {
        transition-delay: 0.6s !important;
    }

    .third-section.visible .third-section-hero:nth-child(3) {
        transition-delay: 0.9s !important;
    }
    .image-left img {
        width: 40em;
        margin-right: 5em;
        margin-bottom: 10em;
    }
    @media (max-width: 992px) {
        .third-section-hero-responsive {
            flex-direction: column;
            align-items: center;
        }
        
        .image-left-responsive img {
            margin-right: 0;
            margin-bottom: 3em;
            width: 100%;
            max-width: 30em;
        }
        
        .description-right-responsive h3 {
            font-size: 2em;
            margin-bottom: 40px;
        }
    }
    @media (max-width: 768px) {
        nav {
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 10px;
        }
        
        .garcia, .sumogat {
            flex-direction: column;
            text-align: center;
        }
        .rappy {
            margin-bottom: 20px;
        }
        
        .images-column-right h1 {
            font-size: 28px;
        }
        
        .images-column-right h1 span {
            font-size: 32px;
        }
        
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
        .carousel-container {
            width: 100%;
            max-width: 100%;
            margin: auto;
        }
    }

    @media (max-width: 576px) {
        nav {
            flex-direction: column;
            gap: 10px;
        }
        
        nav input[type="search"] {
            width: 100%;
        }
        
        section h2 {
            font-size: 28px;
        }
        
        section p {
            font-size: 18px;
        }
        
        .em-button {
            width: 180px;
            height: 45px;
            line-height: 45px;
            font-size: 16px;
        }
        
        .images-column-right {
            padding: 20px 15px;
        }
        
        .wide {
            grid-column: span 1;
        }
        
        .gallery {
            grid-template-columns: 1fr;
            grid-auto-rows: 180px;
        }
        
        .swc-header {
            font-size: 28px;
        }
        
        blockquote {
            font-size: 20px;
            padding: 50px;
        }
        .carousel-container {
            padding: 1em;
            width: 100%;
            max-width: 100%;
            margin: auto;
        }
        .search-icon {
            position: absolute;
            left: 4px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 100px;
          
        }
    }

    /* ==================== BLOG/VIDEO SECTION ==================== */
    .blog, .blog-col-2 {
        flex-direction: column;
        align-items: center;
    }

    .videos {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }


    /* ==================== MEDIA QUERIES ==================== */
    @media (min-width: 440px) {

        
        .blog, .blog-col-2 {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            
        }
        
        .videos {
            width: calc(50% - 20px);
        }
    
    }
    @media (min-width: 768px) {
        .gallery {
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 150px;
        }
        
        .blog, .blog-col-2 {
            display: flex ;
            flex-direction: row ;
            flex-wrap: wrap !;
            
        }
        
        .videos {
            width: calc(50% - 20px);
        }
        
        .wrapper {
            flex-direction: row;
            flex-wrap: wrap;
        }
    }
    @media (min-width: 992px) {
        .container {
            flex-direction: row;
        }
        
        .images-column-left {
            max-width: 600px;
        }
        .videos {
            width: calc(33.333% - 20px);
        }
    }
    @media (min-width: 1200px) {
        .gallery {
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 200px;
        }
        
        .slide img {
            height: 250px;
        }


    }

    @media (max-width: 767px) {  
        nav:not(.side-nav) {
            display: none;
        }
        section h2 {
            font-size: 2.2rem;
        }
        
        section p {
            font-size: 1.2rem;
        }
        .images-column-right h1 {
            font-size: 1.8rem;
        }
        
        .images-column-right h1 span {
            font-size: 2rem;
        }
        .third-section-hero {
            flex-direction: column !important;
        }
        
        .image-left img {
            width: 100%;
            margin-right: 0;
            margin-bottom: 20px;
        }
        
        .description-right h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }
    }

    /* ==================== UTILITY CLASSES ==================== */
    .hidden-mobile {
        display: none;
    }

    .visible-mobile {
        display: block;
    }

    @media (min-width: 768px) {
        .hidden-mobile {
            display: block;
        }
        
        .visible-mobile {
            display: none;
        }
    }
    a, button, input, .hover-animation, .slide, .video-border {
        transition: all 0.3s ease;
    }


    /* ==================Mobile menu button styles======================= */

    /* Mobile Menu Styles */
    .mobile-menu{
        cursor: pointer;
    }
    .mobile-menu,
    .mobile-menu input {
        display: none;
        margin-top: 10px;
    }
    
    .mobile-menu svg {

        height: 3em;
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line {
        fill: none;
        stroke: #35bf40;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line-top-bottom {
        stroke-dasharray: 12 63;
    }
    
    .mobile-menu input:checked + svg {
        transform: rotate(-45deg);
    }
    
    .mobile-menu input:checked + svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
    }
    

    .nav-responsive {
        display: flex;
        transition: all 0.3s ease;
    }

    @media (max-width: 800px) {
        header .head-nav-body {
            flex-wrap: wrap;
            padding: 10px 5%;
            position: relative;
        }

        .nav-responsive {
            display: none;
            width: 100%;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            background: #f7f9f9;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            font-size: 10px;
        }

        .nav-responsive.active {
            display: flex;
        }

        .mobile-menu {
            display: block;
        }
        .mobile-menu {
            display: block;
        }

        .hover-animation {
            width: 100%;
            padding: 15px 0;
            justify-content: start;
        }
        .search-container {
            width: 2.5em;
            overflow: hidden;
            transition: width 0.4s ease-in-out;
        }
        
        .search-container:not(:focus-within):not(:hover) {
            background-color: transparent;
            border: none;
        }
        
        .search-container:focus-within,
        .search-container.active {
            width: 100%; 
            background-color: white;
            border: 1px solid #ccc;
        }
        
        .search-input {
            opacity: 0;
            width: calc(100% - 40px); 
        }
        
        .search-container:focus-within .search-input,
        .search-container.active .search-input {
            opacity: 1;
        }
        .search-container:not(:focus-within) .search-input:placeholder-shown:not(:focus) {
            display: none;
    }
    }

    /*========================================== Loading overlay ===========================================*/
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            visibility: visible;
            opacity: 1;
            transition: visibility 0s, opacity 0.3s;
        }

        .loading-overlay.hide {
            visibility: hidden;
            opacity: 0;
        }
        .futuristic-spinner {
            position: relative;
            width: 100px;
            height: 100px;
        }

        .futuristic-spinner .ring {
            position: absolute;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: #a0ff32;
            border-left-color: #a0ff32;
            box-shadow: 0 0 20px rgba(160, 255, 50, 0.5);
            animation: spin 1.5s linear infinite;
        }

        .futuristic-spinner .ring:nth-child(1) {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .futuristic-spinner .ring:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            animation-duration: 1.2s;
            animation-direction: reverse;
        }

        .futuristic-spinner .ring:nth-child(3) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            animation-duration: 0.9s;
        }

        .futuristic-spinner .core {
            position: absolute;
            width: 40%;
            height: 40%;
            top: 30%;
            left: 30%;
            background-color: #a0ff32;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(160, 255, 50, 0.8);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(0.8); opacity: 0.8; }
        }
 /*========================================= Idle screen saver overlay ====================================*/
 .idle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s;
    overflow: hidden;
}

.idle-overlay.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s;
}

/* Particle canvas background */
#particles-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Digital Clock Container */
.clock-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Digital Clock */
.digital-clock {
    font-family: 'Courier New', monospace;
    font-size: 80px;
    color: #a0ff32;
    text-shadow: 0 0 20px rgba(160, 255, 50, 0.8);
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    border: 2px solid #a0ff32;
    box-shadow: 0 0 30px rgba(160, 255, 50, 0.3);
    letter-spacing: 5px;
}

.date-display {
    font-size: 24px;
    color: #fff;
    margin-top: 20px;
    opacity: 0.8;
}

.status-text {
    font-size: 18px;
    color: #a0ff32;
    margin-top: 30px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: blink 1.5s infinite;
}

/* System status indicators */
.system-status {
    display: flex;
    margin-top: 40px;
    gap: 30px;
}

.status-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-label {
    font-size: 14px;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.indicator-bar {
    width: 100px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.indicator-progress {
    height: 100%;
    background-color: #a0ff32;
    box-shadow: 0 0 10px rgba(160, 255, 50, 0.8);
    animation: fluctuate 8s infinite;
}

.cpu .indicator-progress {
    animation-delay: 0s;
}

.memory .indicator-progress {
    animation-delay: 2s;
}

.network .indicator-progress {
    animation-delay: 4s;
}

@keyframes fluctuate {
    0% { width: 30%; }
    20% { width: 60%; }
    40% { width: 40%; }
    60% { width: 80%; }
    80% { width: 50%; }
    100% { width: 30%; }
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
 /*========================================= Idle screen saver overlay End====================================*/
.info-display {
      margin-top: 10px;
      padding: 10px;
      border: 1px solid #aaa;
      width: 300px;
      font-family: Arial, sans-serif;
    }