/*styles*/

html {
    scroll-behavior: smooth;
}

:root {
  --primary: #19b219;
  --secondary: #243642;
  --grey: #f9f9f9;
  --white: #ffffff;
}

/** {
    cursor: none !important;
}*/

body {
    overflow-x: hidden;
    font-family: "Barlow", sans-serif !important;
    color: #024731;
}

.font2 {
    /*font-family: "ITC_BENUIAT", serif;*/
}

body.active {
    overflow-y: hidden;
}

p {
    font-size: 18px;
}

ul li {
    color: inherit;
}

.services-section ul {
    padding-left: 15px;
    list-style: none !important;
}

.services-section ul li::before {
    position: relative;
    left: -10px;
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    color: #19b219;
}

.container {
    max-width: 1500px;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1200px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.fancybox-container {
	z-index: 999999;
}

.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
    transition: all .5s ease;
}



 /* LOADER OVERLAY WITH VIDEO BACKGROUND */
        .loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8f8f8;
            z-index: 9999999999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }

        /* HERO VIDEO BACKGROUND */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            filter: blur(1px) grayscale(50%);
        }

        /* VIDEO OVERLAY */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(248, 248, 248, 0.8);
            z-index: 2;
        }

        .loader-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        /* LOADER CONTAINER */
        .loader-container {
            text-align: center;
            position: relative;
            z-index: 10;
        }

        /* W&S LOGO - MUCH BIGGER */
        .ws-logo {
            margin-bottom: 80px;
            opacity: 0;
            animation: logoFadeIn 0.8s ease-out 0.3s forwards;
        }

        .logo-svg {
            width: 350px;
            height: 175px;
        }

        .logo-text {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            font-weight: 700;
            fill: none;
            stroke: rgba(26, 26, 26, 0.7);
            stroke-width: 3;
            opacity: 0.8;
        }

        .logo-w {
            font-size: 120px;
        }

        .logo-plus {
            font-size: 80px;
            font-weight: 400;
            fill: rgba(26, 26, 26, 0.7);
            stroke: none;
            opacity: 0.8;
        }

        .logo-s {
            font-size: 120px;
        }

        /* SCATTERED SERVICE WORDS - BIGGER & MORE TRANSPARENT */
        .scattered-words {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            /*opacity: 0;*/
            animation: wordsRagin 1s ease-out 1.5s forwards;
            z-index: 15;
        }

        .service-word {
            position: absolute;
            font-size: 24px;
            font-weight: 200;
            color: rgba(0, 0, 0, 0.25);
            text-transform: uppercase;
            letter-spacing: 4px;
            opacity: 0;
            animation: wordFadeInOnce 1s ease-out forwards;
        }

        .word-1 {
            top: 15%;
            left: 10%;
            animation-delay: 1s;
        }

        .word-2 {
            top: 25%;
            right: 15%;
            animation-delay: 0.8s;
        }

        .word-3 {
            bottom: 30%;
            left: 12%;
            animation-delay: 0.6s;
        }

        .word-4 {
            bottom: 20%;
            right: 10%;
            animation-delay: 0.9s;
        }

        .word-5 {
            top: 40%;
            left: 5%;
            animation-delay: 0.5s;
        }

        .word-6 {
            top: 60%;
            right: 8%;
            animation-delay: 0.6s;
        }

        /* PROGRESS CONTAINER */
        .progress-container {
            width: 200px;
            height: 2px;
            background: #e5e5e5;
            border-radius: 2px;
            margin: 0 auto;
            overflow: hidden;
            opacity: 0;
            animation: progressFadeIn 0.6s ease-out 0.8s forwards;
        }

        /* PROGRESS BAR */
        .progress-bar {
            height: 100%;
            background: #4CAF50;
            border-radius: 2px;
            transform: translateX(-100%);
            animation: progressLoad 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
        }

        /* LOADING TEXT */
        .loading-text {
            font-size: 12px;
            color: #888;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 40px;
            opacity: 0;
            animation: textFadeIn 0.6s ease-out 1.2s forwards;
        }

/* ANIMATIONS */

/* NEW ANIMATION - FADE IN ONCE AND STAY */
@keyframes wordFadeInOnce {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }
}
        @keyframes logoFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes progressFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes progressLoad {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0%);
            }
        }

        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /*@keyframes wordsRagin {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }*/

        /*@keyframes wordFadeIn {
            0%, 100% {
                opacity: 0;
                transform: translateY(5px);
            }
            50% {
                opacity: 0.6;
                transform: translateY(0);
            }
        }*/

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .main-content {
                padding: 50px 20px;
            }
            
            .main-content h1 {
                font-size: 2.2rem;
            }
            
            .progress-container {
                width: 150px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .logo-svg {
                width: 280px;
                height: 140px;
            }
            
            .logo-w, .logo-s {
                font-size: 100px;
            }
            
            .logo-plus {
                font-size: 70px;
            }
            
            .service-word {
                font-size: 18px;
                letter-spacing: 3px;
            }
        }

/* MAIN CURSOR - CLEAN & SIMPLE */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #3282b8, #0f4c75);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999999;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 15px rgba(50, 130, 184, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.8);
            transition: all 0.15s ease-out;
            will-change: transform;
            backface-visibility: hidden;
        }

        /* HOVER STATES */
        .custom-cursor.hover-button {
            transform: translate(-50%, -50%) scale(1.5);
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            box-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
        }

        .custom-cursor.hover-link {
            transform: translate(-50%, -50%) scale(0.8);
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
            box-shadow: 0 0 20px rgba(78, 205, 196, 0.8);
        }

        .custom-cursor.hover-text {
            transform: translate(-50%, -50%) scale(0.5);
            background: #bbe1fa;
            box-shadow: 0 0 10px rgba(187, 225, 250, 0.6);
        }

        /* CLICK EFFECT - OPTIONAL */
        .cursor-click {
            position: fixed;
            width: 0;
            height: 0;
            border: 2px solid #3282b8;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            animation: clickRipple 0.6s ease-out;
        }

        /* MAGNETIC EFFECT */
        .magnetic-element {
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ANIMATIONS */
        @keyframes clickRipple {
            0% {
                width: 0;
                height: 0;
                opacity: 1;
            }
            100% {
                width: 60px;
                height: 60px;
                opacity: 0;
            }
        }

        /* RESPONSIVE - HIDE ON TOUCH DEVICES */
        @media (hover: none) {
            .custom-cursor {
                display: none !important;
            }
            
            * {
                cursor: auto !important;
            }
        }

        @media (max-width: 768px) {
            .demo-header h1 { font-size: 2rem; }
            .demo-container { padding: 30px 15px; }
        }


/*Blog*/


.block.image {
    background-attachment: fixed;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 80px;
}

.block.image .heading {
    color: white;
}

.block.image .small-heading {
    color: white;
}

.block.image p {
    font-size: 19px;
    color: white;
}

.block.image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.2);*/
    background: #07253f;
    opacity: .75;
}

.small-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.small-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.wide-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.large-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.small-block.white {
    background: white;
}

.small-block.blue {
    background: #07253f;
}

.small-block.light-blue {
    background: #4b769b;
}

.wide-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.large-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.post-hold {
    padding: 40px 0;
    border-bottom: 1px solid #07253f;
}

.small-block.post {
    min-height: unset;
    display: block;
    height: unset;
}

.blog-post-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-inner {
    position: relative;
    padding: 65px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.block-inner.post {
    padding: 40px;
}

/* Header */

.header {
    position: relative;
    z-index: 99999;
}

.header .top-header {
    position: relative;
    background: #E5F0EC;
    color: white;
    padding: 5px 20px;
}

.header .top-header ul {
    display: inline-flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    height: 100%;
    font-size: 14px;
}

.header .top-header ul.std li {
    margin: 5px;
}

.header .top-header ul.std li a {
    display: block;
    padding: 5px;
    color: #19b219;
    font-weight: 600;
}

.header .top-header ul.std li a i {
    padding-right: 5px;
    color: #3c3c3c;
}

.header .top-header ul.social li {
    margin: 5px;
}

.header .top-header ul.social li a {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: #19b219;
    border-radius: 50%;
    font-size: 13px;
}

.header.stuck .bottom-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: white;
}

.header.stuck .top-header {
	margin-bottom: 110px;
}

.header .bottom-header {
    position: relative;
    padding: 20px 60px;
}

.header .bottom-header .logo {
	text-align: left;
}

.header .bottom-header .logo img {
    max-height: 70px;
}

.header .bottom-header .menu-hold {
    position: relative;
    height: 100%;
}

.header .bottom-header .menu-hold .menu-menu-1-container {
    height: 100%;
    position: relative;
}

.header .bottom-header .menu-hold ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    height: 100%;
}

.header .bottom-header .menu-hold ul li {
    position: relative;
    padding: 5px;
    margin: 5px;
}

.header .bottom-header .menu-hold ul li a {
    padding: 5px;
    font-weight: 600;
}

.header .bottom-header ul li ul.sub-menu {
    position: absolute;
    left: 0;
    width: 300px;
    top: 120px;
    background: white;
    height: auto;
    color: #25483c;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 10px;
    display: block;
}

.header .bottom-header ul li:hover > ul.sub-menu {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.header .bottom-header ul li ul.sub-menu li a {
    display: block;
    padding: 5px 15px;
    border-radius: 10px;
    text-decoration: none;
}

.header .bottom-header ul li ul.sub-menu li a:hover {
    text-decoration: none;
    background: #19b219;
    color: white;
}

.header .bottom-header .btn {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Base */
.main-menu, .main-menu ul { list-style: none; margin: 0; padding: 0; }
.main-menu > li { position: relative; display: inline-block; }

.main-menu li:hover > .sub-menu { display: block; }

/* Ensure the nav container is positioned (so absolute children can align to it) */
.main-menu {
  position: relative;
}

.main-menu > li.has-mega { position: static !important; }

/* Mega menu container */
.main-menu > li.has-mega > .mega-menu {
  position: absolute;
  left: 50%;                   /* center horizontally */
  transform: translateX(-50%); /* shift back by half width */
  width: 80vw;                 /* max width of mega menu */
  top: 120px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 15px;
  z-index: 50;
  border-radius: 10px;
  transition: all .5s ease;
  display: block;
}

/* Show on hover */
.main-menu > li.has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 70px;
}

/* Optional: cap max width so it doesn't stretch too far on very large screens */
.main-menu > li.has-mega > .mega-menu {
  max-width: 1400px;
}
/*.main-menu > li.has-mega:hover > .mega-menu {
    top: 50px;
}*/

.mega-left-img { width: 100%; height: auto; display: block; }

.header .bottom-header .menu-hold ul .mega-columns {
    display: block;
    columns: 3;
}

.mega-left-bg {
    position: relative;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

/* Make each LI inside mega columns occupy a grid cell */
.header .bottom-header .menu-hold ul li .mega-columns > li {
    list-style: none;
    margin: 0;
}
.header .bottom-header .menu-hold ul li .mega-columns > li > a {
    display: block;
    padding: 5px 15px;
    border-radius: 10px;
    text-decoration: none;
}
.header .bottom-header .menu-hold ul li .mega-columns > li > a:hover {
    text-decoration: none;
    background: #19b219;
    color: white;
}

/* Optional: spacing for nested submenus within mega (3rd level) */
.mega-columns .sub-menu { position: static; display: block; box-shadow: none; padding-left: 0; }
.mega-columns .sub-menu > li > a { padding-left: 12px; font-size: .95em; opacity: .9; }

/* Responsive tweaks */
@media (max-width: 992px){
  .main-menu > li { display: block; }
  .main-menu > li.has-mega > .mega-menu { position: static; box-shadow: none; }
}


/*Home*/

.hero-banner {
    position: relative;
    padding: 40px 0;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background: #243642;
    color: white;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #243642;
    opacity: 0.8;
}

.hero video {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    left: 50%;
    min-height: 100%;
    z-index: -1;
}

.hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    z-index: -1;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 17vh 40px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: linear-gradient(180deg, #24364296 0%, #243642c9 55%);*/
    background-image: linear-gradient(180deg, #24364299 0%, #2436425c 55%);
}

.hero .hero-overlay {
    position: relative;
    max-width: 1300px;
    left: 50%;
    transform: translateX(-50%);
    /*text-align: center;*/
}

.hero .hero-overlay .main {
    font-size: 65px;
    line-height: 70px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero .hero-overlay .main strong {
    color: #19b219;
    font-weight: inherit;
}

.hero .hero-overlay p {
    color: white;
    font-size: 16px;
}

.hero .hero-overlay .left-hold {
    /*padding-right: 40px;*/
}

.hero .hero-overlay .left-hold::before {
    content: "";
    position: absolute;
    height: 80%;
    width: 2px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff66;
    display: none;
}

.hero .hero-overlay .form-outer {
    position: relative;
    padding: 40px;
}

.hero .hero-overlay .form-hold {
    position: relative;
    background: rgb(177 177 177 / 33%);
    backdrop-filter: saturate(180%) blur(5px);
    padding: 30px;
    display: inline-block;
    border-radius: 20px;
}

.hero .hero-overlay .form-hold .title {
    font-size: 26px;
    color: white;
    /*text-transform: uppercase;*/
    margin-bottom: 20px;
    text-align: center;
}

.hero .hero-overlay .form-hold p {
    margin-bottom: 0;
}

.hero .hero-overlay .form-hold .btn {
    display: block;
    width: 100%;
}

.hero .hero-overlay .form-hold .wpcf7-spinner {
    position: absolute;
}

.upsub {
    padding: 10px 30px;
    border: 1px solid #ffffff66;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    color: white;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    animation: floatUp 12s infinite linear;
}

.particle:nth-child(odd) {
    background: rgba(16, 185, 129, 0.1);
}

.particle:nth-child(3n) {
    background: rgba(52, 211, 153, 0.08);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about .image {
    height: 100%;
    min-height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.about .bigi {
    font-size: 85px;
    line-height: 80px;
    color: #19b219;
    margin-bottom: 20px;
}

.about .content-hold {
    position: relative;
    padding: 40px;
}

.about .counter-item {
    text-align: center;
    /*background: #f1f1f1;*/
    /*border-radius: 20px;*/
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #E5F0EC;
}

.about .counter-item.last {
    border-bottom: none;
}

.welcome {
	position: relative;
	padding: 120px 0;
    overflow: hidden;
}

.welcome .welcome-image {
	position: relative;
	height: 100%;
	min-height: 300px;
	width: 100%;
	background-position: center;
	background-size: cover;
	border-radius: 30px;
}

.welcome .welcome-image .float-block {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px 40px;
	background: #19b219;
	color: white;
	border-radius: 30px 0 30px 0;
}

.welcome .welcome-image .float-block i {
	font-size: 45px;
}

.welcome .welcome-image .float-block .big {
	font-size: 42px;
	font-weight: 600;
}

.welcome .welcome-image .float-block span {
	font-weight: 500;
}

.welcome .trust-block {
	position: relative;
	padding: 30px;
	text-align: center;
	border-right: 2px solid #E5F0EC;
	color: #024731;
}

.welcome .trust-block.nob {
	border: none;
}

.welcome .trust-block i {
	font-size: 35px;
	margin-bottom: 10px;
	/*color: #19b219;*/
}

.welcome .trust-block .title {
	font-weight: 500;
	line-height: 16px;
}

.services {
	position: relative;
    overflow: hidden;
}

.services .service-block {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 400px;
	width: 100%;
	overflow: hidden;

    perspective: 1000px;
    transform-style: preserve-3d;
}

.services .service-block .title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: white;
}

.services .service-block .hover-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease;
	padding: 80px;
	text-align: center;
}

.services .service-block:hover {

}

/* Back Face - Your existing hover-info styling */
.service-back {
    transform: rotateY(180deg);
	background: #19b219;
    /*background: linear-gradient(135deg, #3282b8 0%, #0f4c75 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Flip Card Inner Container */
.service-block-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-block:hover .service-block-inner {
    transform: rotateY(180deg);
}

/* Front and Back Faces */
.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0;
}

/* Front Face - Your existing title styling */
.service-front {
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-block:hover .service-front::before {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.service-block.touch-flipped .service-block-inner {
    transform: rotateY(180deg);
}

.services .service-block:hover .hover-info {
	opacity: 1;
	visibility: visible;
}

.services .service-block .hover-info .holder {
	position: relative;
	/*top: 80%;*/
	/*transform: translateY(-50%);*/
	transition: all .5s ease;

}

/*.services .service-block:hover .hover-info .holder {
	top: 50%;
}*/

.services .service-block .service-front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #24364217 0%, #243642c9 55%);
    /*background-image: linear-gradient(180deg, #24364217 0%, #128912d9 55%);*/
}

.vid-block {
	position: relative;
	padding: 120px 0;
}

.vid-block .rounded-block {
	border-radius: 35px;
	overflow: hidden;
}

.vid-block .rounded-block .heading {
	font-size: 45px;
	line-height: 50px;
}

.vid-block .rounded-block .image {
	position: relative;
	height: 100%;
	min-height: 300px;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.vid-block .rounded-block .text-block {
	position: relative;
	background-image: linear-gradient(180deg, #759b8d 0%, #243642 85% 55%);
	padding: 80px;
	color: white;
}

.vid-block .rounded-block .waste-panel {
	position: relative;
	padding: 30px;
	border: 1px solid #ffffff38;
	background: transparent;
	border-radius: 25px;
	margin: 20px 0;
	transition: all .5s ease;
}

.vid-block .rounded-block .waste-panel.first {
	background: #ffffff38;
}

.vid-block .rounded-block .waste-panel p {
	margin-bottom: 0;
}

.vid-block .rounded-block .waste-panel .arrow-hold {
	position: absolute;
	top: 20px;
	right: 20px;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	border-radius: 50%;
	transform: rotate(-45deg);
	transition: all .5s ease;
}

.vid-block .rounded-block .waste-panel .arrow-hold i {
	color: #024731;
}

.vid-block .rounded-block .waste-panel:hover {
	background: #ffffff38;
}

.vid-block .rounded-block .waste-panel:hover .arrow-hold {
	transform: rotate(0deg);
}

.play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #19b219; /* YouTube red */
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 2s ease-out 0s 2;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2s ease-out infinite;
  z-index: 0;
}

.pulse-ring.delay {
  animation-delay: 0.5s;
}

.play-pulse i {
	font-size: 35px;
	color: white;
}

.play-pulse:hover {
	text-decoration: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.stats-section {
	position: relative;
}

.stats-section .stat-top {
	position: relative;
    background: #243642;
	color: white;
	padding: 80px;
}

.stats-section .stat-top::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 200px;
    background: #243642;
}

.stat {
  flex: 1 1 200px;
}

.stat p {
	margin-bottom: 0;
	font-size: 16px;
	color: #e5f0ec;
}

.count {
  font-size: 3rem;
  color: #19b219;
  font-weight: bold;
}

.count::after {
	content: "+";
	color: #E5F0EC;
    margin-left: 10px;
}

.stats-section .paralax-image {
	position: relative;
	background-position: center;
	padding: 80px;
	z-index: 9;
}

.stats-section .paralax-image .image-hold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.stats-section .paralax-image .image-hold::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #24364236 0%, #2436429e 55%);
    z-index: 9;
}

.stats-section .paralax-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
}

.stats-section .paralax-image .big-cta {
	background: #19b219;
	color: white;
	padding: 40px;
	display: inline-block;
	text-align: center;
	border-radius: 25px;
}

.stats-section .paralax-image .big-cta i {
	font-size: 75px;
	line-height: 80px;
}

.stats-section .paralax-image .big-cta .under {
	margin: 10px 0;
	color: #E5F0EC;
	font-weight: 600;
	font-size: 18px;
}

.stats-section .paralax-image .big-cta .phone {
	font-size: 24px;
	font-weight: 600;
}

.stats-section .paralax-image .text {
	position: relative;
	font-size: 45px;
	line-height: 45px;
	color: white;
	top: 50%;
	transform: translateY(-50%);
}

/* Services Section */
        .services-section {
            /*background: #f8f9fa;*/
            min-height: 600px;
            position: relative;
            overflow: visible;
            padding: 40px;
            color: white;
        }

        .services-section .heading {
            color: white;
        }

        .services-container {
            background: #243642;
            border-radius: 30px;
            position: relative;
            overflow: visible;
            min-height: 500px;
            /*margin-right: 200px;*/
            padding: 80px 40px;
        }

        .services-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }

        .services-text {
            color: var(--text-light);
            padding-left: 60px;
            padding-right: 60px;
        }

        .services-subtitle {
            color: #19b219;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .services-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        /* Slider Styles */
        .services-slider-container {
            position: absolute;
            right: -90px;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 10;
        }

        .services-slider {
            position: relative;
        }

        .services-section .slide-hold {
            position: relative;
            height: 100%;
        }

        .slide-item {
            position: relative;
            margin: 0 10px;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            color: #024731;
        }

        /* optional hover lift */
        .slide-item:hover {
            /* transform: translateY(-10px); */
        }

        .slide-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }

        .slide-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            padding: 20px;
            border-radius: 0 0 15px 15px;
            max-height: 80px;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        /* expand on hover */
        .slide-item:hover .slide-content {
            max-height: 500px;
        }

        /* optional fade-in extras */
        .slide-content .moreinfo {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }

        .slide-item:hover .moreinfo {
            opacity: 1;
            visibility: visible;
        }

        .slide-content .title {
            font-size: 22px;
            /*text-transform: uppercase;*/
            font-weight: 600;
            margin-bottom: 10px;
        }

        .slide-content .moreinfo {
            position: relative;
            opacity: 0;
            visibility: hidden;
            transition: all .5s ease;
        }

        .slide-content .moreinfo p {
            font-size: 14px;
        }

        .slide-content .moreinfo a {
            font-weight: 600;
            color: #19b219;
        }

        .slide-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .slide-tag {
            background: #19b219;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Slick Slider Custom Styles */
        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            color: #19b219;
            font-size: 12px;
        }

        .slick-dots li.slick-active button:before {
            color: #19b219;
        }

        /* Custom Stacked Navigation Arrows */
        .slider-navigation {
            position: absolute;
            left: -100px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 15;
        }

        .nav-arrow {
            background: #19b219;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .nav-arrow:hover {
            background: var(--secondary-green);
            transform: scale(1.1);
        }

        .slick-arrow {
            display: none !important;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-container {
                margin-right: 150px;
            }
            
            .services-slider-container {
                right: -120px;
                width: 45%;
            }
        }

        @media (max-width: 768px) {
            .services-title {
                font-size: 2.5rem;
            }
            
            .services-container {
                margin-right: 0;
            }
            
            .services-slider-container {
                position: relative;
                right: 0;
                width: 100%;
                margin-top: 50px;
                transform: none;
            }
            
            .services-content {
                padding: 40px 0;
            }

            .services-text {
                padding-left: 30px;
                padding-right: 30px;
            }

            .slider-navigation {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .services-title {
                font-size: 2rem;
            }
            
            .slide-item {
                margin: 0 5px;
            }

            .services-text {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

.accordions {
    position: relative;
    padding: 80px 0;
    background: #f9f9f9;
}

.accordions .accordion {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.accordions .accordion .acc-button {
    position: relative;
    width: 100%;
    border: none;
    background: #19b219;
    color: white;
    padding: 15px 30px;
    transition: all .5s ease;
    border-radius: 10px;
    font-size: 20px;
}

.acc-button::after {
  content: '\002B'; /* plus sign */
  float: right;
  transition: transform 0.3s ease;
}

.acc-button.active::after {
  content: '\2212'; /* minus sign */
  transform: rotate(180deg);
}

.accordions .accordion .acc-button:hover {
    cursor: pointer;
    background: #E5F0EC;
    color: #19b219;
}

.accordions .accordion .acc-button.active {
    background: #E5F0EC;
    color: #19b219;
}

.accordions .accordion .acc-button:focus {
    outline: none;
}

.accordions .accordion .panel {
    display: none;
    background: white;
    border-radius: 10px;
    padding: 20px;
    transition: all .5s ease;
    margin-top: 10px;
}

.accordions .accordion .panel.open {
  padding: 15px 20px;
}

.news {
	position: relative;
	padding: 120px 0;
}

.news .blog-post {
	position: relative;
	padding: 20px;
	margin: 10px;
	border: 1px solid #E5F0EC;
}

.news .blog-post:hover .image {
	background-size: 150%;
}

.news .blog-post:hover .title {
	color: #19b219;
}

.news .blog-post .image {
	position: relative;
	height: 300px;
	width: 100%;
	background-size: 110%;
	background-position: center;
	transition: all .5s ease;
}

.news .blog-post .image.map {
    background-size: contain;
    background-repeat: no-repeat;
}

.news .blog-post .image.map .inner {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: right;
    max-width: 200px;
}

.news .blog-post .image.map .inner .btext {
    font-size: 35px;
    line-height: 35px;
    font-weight: bold;
    color: #19b219;
}

.news .blog-post .text-hold {
	position: relative;
	padding: 20px;
}

.news .blog-post .title {
	font-size: 24px;
	font-weight: 600;
	transition: all .5s ease;
	margin-bottom: 10px;
}

.news .blog-post p {
	font-size: 14px;
}

.block-array-section {
    position: relative;
    padding: 80px 0;
    background: #f9f9f9;
}

.block-array-section .array-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
}

.block-array-section .array-block:hover {
    transform: translateY(-20px);
    box-shadow: 0px 20px 20px 10px #24364214;
    text-decoration: none;
}

.block-array-section .array-block:hover .image {
    background-size: 50em;
}

.block-array-section .array-block .content {
    position: relative;
    padding: 20px;
    background: white;
}

.block-array-section .array-block .content .title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.block-array-section .array-block .image {
    position: relative;
    height: 300px;
    width: 100%;
    background-size: 40em;
    background-position: center;
    transition: all .5s ease;
}

.branch-finder {
    position: relative;
    padding: 80px 0;
    border-bottom: 2px solid #243642;
}

.slider-filters {
    display:flex;
    gap:.5rem;
    flex-wrap:wrap;
    margin:0 0 .75rem
}
.filter-btn {
    background: #E5F0EC;
    border: 2px solid transparent;
    color: #19b219;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    cursor: pointer;
}

.filter-btn.hrc {
    margin: 5px;
}

.filter-btn.is-active {
    background: #E5F0EC;
    border-color: #19b219;
}

.hrc-links-wrapper {
    position: relative;
    padding-bottom: 80px;
}

.sites-slider .slide {
    padding: 20px;
    border: 1px solid #E5F0EC;
    margin: 10px;
}
.sites-slider .slide p {
    font-weight: 600;
}

.sites-slider .slide .slidebox {
    display: block;
}

.sites-slider .slide .slidebox:hover {
    text-decoration: none;
}

.sites-slider img {
    display:block;
    border-radius:12px;
    max-height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.para-banner .side-block {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: white;
}

.side-block {
    position: relative;
    padding: 30px;
    background: #E5F0EC;
    color: #024731;
    border-radius: 20px;
}

.side-block .title {
    background: #19b219;
    color: white;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 20px;
}

.side-block ul {
    padding-left: 15px;
    margin-bottom: 0;
}

.side-block ul li {
    margin: 5px 0;
}

.para-banner {
	position: relative;
	min-height: 200px;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
    z-index: 9;
}

.para-banner.noimage {
    background: #243642;
}

.para-banner.noimage::before {
    display: none;
}

.para-banner::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #24364236 0%, #2436429e 55%);
    z-index: -1;
}

.para-banner .text-hold {
    padding: 20px;
    color: white;
    z-index: 99;
}

.brand-section {
	position: relative;
	padding: 40px 0;
}

.brand-section .slide {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
    /*max-width: 200px !important;*/
    margin: 0 20px;
}

.brand-section .slide img {
	max-height: 125px;
	max-width: 200px;
	margin: 0 auto;
}

/* Tickertape */

.ticker-hold {
    position: relative;
    width: 100%;
    z-index: 9999;
    overflow: hidden; /* Ensure overflow is hidden */
}

/*#breaking {
    font-size: 18px;
    padding: 15px 20px;
    background: #28364b;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}*/

#newsTicker {
    position: relative;
    width: 100%;
    background-color: #19b219;
    color: #ffffff;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    /*padding-top: 15px;*/
    /*padding-bottom: 15px;*/
    z-index: 998;
}

.date {
    margin-right: 10px;
    font-weight: bold;
    font-style: italic;
}

.story {
    margin-right: 20px;
}

.ticker-content-wrapper {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    display: inline-block;
/*    padding-right: 20px;*/
    /*padding-left: 240px;*/
}

.ticker-content .waste-type {
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
}

.ticker-content .waste-type i {
    font-size: 35px;
    margin-right: 20px;
}

/*Gallery*/

.gallery-hold {
        position: relative;
        padding: 40px 30px;
    }
    .gallery-items {
        margin: 12.5px;
    }
    .gallery-image {
        height: 450px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .details {
        position: relative;
        padding: 20px 10px;
    }
    .cat {
        font-weight: 300;
        font-size: 15px;
        opacity: .7;
    }
    .light {
        font-weight: 200;
    }
    .style-heading {
        position: relative;
        font-size: 26px;
        margin-bottom: 0;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
        opacity: .9;
        letter-spacing: 1px;
    }
    .style-heading::before {
        position: absolute;
        content: "";
        left: 50%;
        transform: translate(-50%);
        bottom: -2px;
        height: 3px;
        width: 20px;
        background: #525252;
    }
    .slick-arrow {
        background: transparent;
        color: #19b219;
    }

    .slick-arrow:hover {
    	color: #024731;
    }
    .slick-prev {
        left: -45px;
        font-size: 25px;
    }
    .slick-next {
        /*right: -40px !important;*/
        font-size: 25px;
    }
    .gallery-image {
      object-fit: contain;
      object-position: center;
    }
    .side-bar {
        position: absolute;
        padding: 40px 0;
        width: 15vw;
        right: 0;
        text-align: right;
        z-index: 1;
        transition: all .5s ease;
    }
    .gal-hold {
        width: 85vw;
    }
    .tab-wrap ul {
        font-size: 21px;
        margin-bottom: 20px;
        font-weight: 400;
        line-height: 40px;
        text-transform: uppercase;
    }
    .content_title {
     margin-bottom: 40px;
    }
     .content_title .title {
         color: white;
    }
     .content_title .title small {
         font-weight: 100;
    }
     .main {
         padding: 15px;
         margin: auto;
    }
     .main * {
         transition: all 0.4s;
    }
     .main .top_banner, .main .bottom_banner {
         text-align: center;
         color: white;
    }
     .main .main_content {
         column-gap: 20px;
         width: 100%;
    }
     .main .main_content .picture_wrapper {
         margin-bottom: 20px;
         position: relative;
         overflow: hidden;
         transition: all .3s ease;
    }
     .main .main_content .picture_wrapper img {
         height: 100%;
         width: 100%;
         object-fit: cover;
         box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.06);
         position: relative;
         transition: all .5s ease;
         overflow: hidden;
    }
    }
    .main .main_content .picture_wrapper img:hover {
        box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.15);
    }
     @media (min-width: 1200px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 768px) and (max-width: 1199px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 576px) and (max-width: 767px) {
         .main_content {
             column-count: 2;
        }
    }
     @media (max-width: 575px) {
         .main_content {
             column-count: 1;
        }
    }
    .box {
        overflow: hidden;
        display: none;
    }

    .selected {
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .checklist_wrap .box{
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .contextNav.onethird {
        background-color: transparent; }

    .tab-wrap li {
        cursor: pointer;
        position: relative;
        transition: all .5s ease;
        line-height: 20px;
        padding: 20px 30px;
    }

    .tab-wrap li.active, .tab-wrap li:hover {
        background: #f2ede4;
    }
    .magnifier {
        position: absolute;
        bottom: -70px;
        font-size: 40px;
        z-index: 99;
        right: 15px;
        text-align: center;
        width: 48px;
        transition: all .5s ease;
        padding: 3px;
        color: #fff;
    }
    .main .main_content .picture_wrapper:hover .magnifier {
        bottom: 0;
    }
    .social {
        display: inline-flex;
        position: relative;
        right: 30px;
    }
    .social li a {
        color: white;
        font-size: 20px;
        text-decoration: none !important;
    }
    .side-button {
        width: fit-content;
        left: -43px;
        position: absolute;
        background: black;
        z-index: 9999;
        font-size: 26px;
        padding: 4px 9px;
        border-radius: 5px 0 0 5px;
        top: 45%;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        transition: all .5s ease;
    }
    .side-button.closer {
        width: fit-content;
        left: 25px;
        position: absolute;
        z-index: 9999;
        font-size: 30px;
        top: 42px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all .5s ease;
        transform: unset;
        border-radius: unset;
        padding: unset;
        background: unset;
    }
    @media(max-width: 1800px) {
        .side-bar {
          width: 20vw;
        }
        .gal-hold {
          width: 80vw;
        }
    }
    @media(max-width: 1500px) {
        .side-bar {
          width: 25vw;
        }
        .gal-hold {
          width: 75vw;
        }
    }
    @media(max-width: 991px) {
        .gal-hold {
          width: 100vw;
        }
        .side-bar {
            position: fixed;
            width: 100%;
            max-width: 220px;
            z-index: 9;
            right: -220px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 20px 0 0 20px;
        }
        .side-bar.active {
            right: 0;
        }
        .side-bar, .side-button {
          background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }
        .side-button {
            opacity: 1;
            visibility: visible;
        }

        .tab-wrap ul {
          font-size: 19px;
        }
    }

    @media(max-width: 345px) {
        .side-bar.active .side-button {
            opacity: 0;
            visibility: hidden;
        }
        .side-bar.active .side-button.closer {
            opacity: 1;
            visibility: visible;
        }
    }

.opening-hours {
    position: relative;
    padding: 80px 0;
}

.opening-hours .hour-block {
    display: block;
    position: relative;
}

.opening-hours .hour-block .title {
    font-weight: 600;
    color: white;
    background: #19b219;
    padding: 10px;
    text-align: center;
    font-size: 20px;
}

.opening-hours .hour-block .info {
    background: #E5F0EC;
    padding: 20px;
    min-height: 175px;
}

.opening-hours .hour-block .info p:last-child {
    margin-bottom: 0;
}

/*Defaults*/

.ws-sidebar {
    /*position: fixed;*/
    position: relative;
    background: #f9f9f9;
    margin-top: 120px;
}

.ws-sidebar .sidebar-box {
    margin-bottom: 35px;
}

.ws-sidebar .sidebar-title {
    background: #19b219;
    color: #fff;
    padding: 12px 15px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-sidebar .sidebar-title i {
    font-size: 22px;
}

.sidebar-share-icons {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    padding: 20px;
}

.sidebar-share-icons a {
    width: 38px;
    height: 38px;
    background: #E5F0EC;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #19b219;
}

.sidebar-tags .tag-item {
    display: inline-block;
    border: 1px solid #000;
    padding: 5px 12px;
    margin: 5px 3px 0 0;
}

.sidebar-recent-posts {
    padding: 20px;
}

.sidebar-recent-posts .recent-post-item {
    /*display: flex;*/
    /*gap: 15px;*/
    margin-bottom: 40px;
}

.sidebar-recent-posts .rp-thumb img {
    width: 100%;
    /*height: 70px;*/
    /*object-fit: cover;*/
}

.sidebar-recent-posts .rp-date {
    font-size: 14px;
    margin-bottom: 5px;
}

.sidebar-recent-posts .rp-title {
    font-weight: 700;
    color: #19b219;
}


/* Call to action */
.cta-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    padding: 18px 35px;
    background: transparent;
    color: #059669;
    text-decoration: none;
    border: 2px solid #059669;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #059669;
    color: white;
    transform: translateY(-3px);
}

.sub {
	display: inline-block;
	position: relative;
	background: #E5F0EC;
	color: #19b219;
	font-weight: 500;
	padding: 10px 30px;
	border-radius: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heading {
    font-size: 60px !important;
    font-weight: 600 !important;
    line-height: 70px !important;
    margin: 20px 0;
}

.heading.sm {
	font-size: 35px;
	line-height: 40px;
}

/*h1,h2,h3,h4 {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    margin: 0 !important;
}*/

.heading h2 {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 20px;
}

p.grey {
	color: #c1c1c1;
}

.form-control {
    /*color: #ffffff66;*/
    border: none;
    /*background: #ffffff66;*/
    /*color: white;*/
}

.btn {
    background: transparent;
    border: 2px solid #19b219;
    color: #19b219;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #19b219;
    color: white;
    transform: translateY(-2px);
}

.btn.rev {
    background: #19b219;
    color: white;
}

.btn.rev:hover {
    color: #19b219;
    background: transparent;
}

.btn:hover {
    color: white;
    text-decoration: none;
}

.btn.dark {
	background: #024731;
}

.btn.white {
    background: white;
    color: #3c3c3c;
}

.btn.white:hover {
	color: white;
}

.btn.gold {
    background: #b29266;
}

.form-group {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    margin: 0 3px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    padding-left: 50px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    height: 50px;
}
.form-group select {
    font-style: italic;
    color: #aaa;
}
.form-group input::placeholder,
.form-group select option {
    font-style: italic;
    color: #aaa;
}
.form-group select option {
    padding-left: unset;
}

.form-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
}

.cfsocials {
    position: relative;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.cfsocials .btn {
    background: #19b219;
    color: white;
    padding: 0;
    margin: 0 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;  
    align-items: center;
    justify-content: center;
}

.vid-section {
    position: relative;
    padding: 80px 0;
}

/* ===========================================================
   MEDIA CAROUSEL
   =========================================================== */

/* Wrapper */
.media-carousel-section {
    position: relative;
    padding-bottom: 80px;
    padding-top: 20px;
}

/* Give the slider some 3D context */
.media-carousel {
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Slide container */
.media-card-outer {
    padding: 80px 10px;
    padding-top: 0;
}

/* Card base */
.media-card {
    display: block;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    /* overlap neighbours a bit so side slides tuck under */
    margin: 0 -30px;
    transform: translateY(20px) scale(0.9);
    transition:
        transform 0.6s ease,
        opacity 0.4s ease,
        box-shadow 0.5s ease;
    box-shadow: 0 24px 30px rgba(0,0,0,0.1);
}

/* Image wrapper (using background-image .image div) */
.media-card-image {
    position: relative;
    overflow: hidden;
}

.media-carousel .media-card .image {
    position: relative;
    height: 350px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

/* ===========================================================
   PLAY BUTTON OVERLAY (VIDEOS)
   =========================================================== */

.media-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-card-play .play-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgb(117 188 50);
    position: relative;
}

.media-card-play .play-inner::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #fff;
}

/* ===========================================================
   3D / CIRCULAR DEPTH EFFECT
   =========================================================== */

/* Default state for slides (side slides) */
.media-carousel .slick-slide .media-card {
    position: relative;
    transform: translateY(40px) scale(0.82) translateZ(-180px);
    opacity: 0.45;
    z-index: 1;
    box-shadow: 0 18px 10px rgba(0,0,0,0.08);
}

/* Centre slide on top + bigger + closer */
.media-carousel .slick-center .media-card {
    transform: translateY(20px) scale(1.02) translateZ(0);
    opacity: 1;
    z-index: 9;
    box-shadow: 0 20px 20px rgba(0,0,0,0.15);
    margin: 0 -70px;
}

/* Optional gentle curve on visible side slides */
.media-carousel .slick-slide.slick-active:not(.slick-center) .media-card {
    /* tweak angles for more/less curve */
    transform: translateY(40px) scale(0.82) translateZ(-180px) rotateY(10deg);
}

/* Make slides on the right tilt the other way */
.media-carousel .slick-slide.slick-active + .slick-slide:not(.slick-center) .media-card {
    transform: translateY(40px) scale(0.82) translateZ(-180px) rotateY(-10deg);
}

/* Fallback opacity transitions */
.media-carousel .slick-slide {
    transition: opacity 0.3s ease;
}

/* ===========================================================
   DOTS
   =========================================================== */

.media-carousel-dots {
    margin-top: 28px;
    text-align: center;
}

.media-carousel-dots .slick-dots {
    position: static;
    margin: 0;
}

.media-carousel-dots .slick-dots li {
    margin: 0 4px;
}

/* If you want styled dots, uncomment:
.media-carousel-dots .slick-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #d3d7e2;
    font-size: 0;
    padding: 0;
}

.media-carousel-dots .slick-dots .slick-active button {
    width: 18px;
    background: var(--secondary);
}
*/

/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width: 767px) {

    .media-card-outer {
        padding: 10px 5px;
    }

    .media-card {
        margin: 0; /* avoid weird overlap on small screens */
    }

    .media-carousel .slick-slide .media-card {
        transform: translateY(20px) scale(0.95) translateZ(-60px);
        opacity: 0.85;
    }

    .media-carousel .slick-center .media-card {
        transform: translateY(0) scale(1) translateZ(0);
        opacity: 1;
    }
}




/*tipping-prices*/

.tipping-prices {
    position: relative;
    padding: 80px 0;
    z-index: 99999;
}

.tp-wrap {
    max-width:1100px;
    margin:0 auto;
    padding:clamp(16px,3vw,32px)
}
.tp-head {
    margin-bottom:16px
}
.tp-sub{
    color:#6b7280;
    margin:0 0 6px
}
.tp-h{margin:0 0 8px}
.tp-intro{color:#374151}
.tp-category-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:14px 0 0
}
.tp-pill{
    border:1px solid #e5e7eb;
    background:#f9fafb;
    border-radius:999px;
    padding:8px 12px;
    cursor:pointer
}
.tp-pill:hover{
    background:#f3f4f6;
    color: #6b7280;
}
.tp-backdrop {
    position: fixed;
    inset: 0;
    /*background: rgba(0,0,0,.45);*/
    z-index: 9998;
}

.tp-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999; /* higher than header */
}

.tp-dialog {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    max-width: min(1100px, 95vw);
    max-height: 80vh;
    overflow: auto;
    width: 100%;
}

.tp-mh{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid #eee}
.tp-mh h3{margin:0;font-size:20px}
.tp-site-chip{margin-left:8px;display:inline-block;background:#eef2ff;border:1px solid #e0e7ff;border-radius:999px;padding:2px 8px;font-size:12px}
.tp-close{border:none;background:#f3f4f6;border-radius:10px;width:36px;height:36px;font-size:20px;cursor:pointer}
.tp-body{padding:14px 18px 20px}
.tp-additional{margin-bottom:14px}
.tp-table{width:100%;border-collapse:collapse}
.tp-table th,.tp-table td{border:1px solid #e5e7eb;padding:10px;text-align:left;vertical-align:top}
.tp-table caption{caption-side:top;text-align:left;margin-bottom:8px;font-weight:600}
.tp-site-info{margin-top:16px;padding:12px;border:1px solid #e5e7eb;border-radius:12px;background:#fafafa}
.tp-site-info h5{margin:0 0 6px;font-size:15px}
        @media (max-width:600px){ .tp-dialog{border-radius:12px} }

.tp-site-info .tp-contact-row {
    display: flex;
    margin: 10px 0;
}

.tp-dialog .tp-link {
    text-align: center;
}

.tp-dialog .tp-para {
    text-align: center;
}

.tp-dialog .tp-link a {
    font-size: 45px;
    line-height: 45px;
    font-weight: bold;
    position: relative;
}

.tp-site-info .tp-icon {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: #19b219;
}

.tp-site-info .tp-content {
    padding-left: 10px;
}

.tp-site-info .tp-req-list {
    padding-left: 15px;
    margin-bottom: 0;
}

.tp-site-info h5 {
    font-size: 24px;
    color: #19b219;
    font-weight: 600;
}

.tp-site-info .tp-req-list li {
    margin: 5px 0;
}

/*Footer*/

.footer {
	position: relative;
	background: #243642;
	color: white;
}

.footer .main-footer {
	position: relative;
	padding-top: 80px;
}

.footer .footer-heading {
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 20px;
	display: inline-block;
}

.footer .footer-heading::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 80%;
	height: 2px;
	background: #19b219;
}

.footer ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

.footer ul li {
	/*margin: 10px 0;*/
	border-bottom: 1px solid #e5f0ec47;
	padding: 10px;
}

.footer ul li:last-child {
	border: none;
}

.footer ul li a:hover {
	color: #19b219;
	text-decoration: none;
}

.footer ul.social {
    right: unset;
}

.footer ul.social li {
    border: none;
}

.footer .copyright {
	border-top: 1px solid #e5f0ec47;
	margin-top: 20px;
	padding: 20px 0;
}

.footer .copyright img {
    max-height: 30px;
}

/*Responsive*/

@media only screen and (min-width : 1200px) {
    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .top-header {
    	display: none;
    }

    .header {
    	margin-bottom: 90px;
    }

    .header .bottom-header {
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	background: white;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: #19b219;   
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
        padding: 10px;
    }

    body.active .header .bottom-header .menu-hold ul {
        display: block;
    }

    .header .bottom-header .menu-hold ul {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: #243642;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .bottom-header .menu-hold ul li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .bottom-header .menu-hold ul li a {
        padding: 12px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .header .bottom-header ul li ul.sub-menu {
        position: static !important;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        background: #1a2831;
        text-align: center;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        opacity: 1;
        visibility: visible;
    }

    .main-menu > li.has-mega > .mega-menu {
        display: none;
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
/*        text-align: center;*/
    }

    .col-md-3.hours {
        text-align: left;
    }

    .social {
        right: unset;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }

    body {
        text-align: center;
    }
    
}

@media (max-width: 991px) {
	.hero .hero-overlay .main {
		font-size: 35px;
		line-height: 40px;
	}

	.hero .hero-overlay .form-outer {
		padding: 40px 0;
	}

	.hero .hero-overlay .left-hold::before {
		display: none;
	}

	.hero .hero-overlay .left-hold {
		padding: unset;
	}

	.heading,
	.vid-block .rounded-block .heading {
		font-size: 35px !important;
		line-height: 40px !important;
	}

	.sub {
		font-size: 12px;
	}

	.slick-arrow {
		display: none !important;
	}

	.welcome .trust-block {
		border: none;
	}

	.welcome .welcome-image {
		margin-top: 40px;
	}

	.services .service-block {
		height: 200px;
	}

	.vid-block .rounded-block .text-block {
		padding: 40px 20px;
	}

	.vid-block .rounded-block .waste-panel {
		text-align:left;
	}

    .stats-section .stat-top {
        padding: 80px 20px;
    }

	.stats-section .paralax-image {
		padding: 80px 20px;
	}

	.stats-section .paralax-image .text {
		font-size: 34px;
		line-height: 35px;
	}

	.stats-section .paralax-image .big-cta {
		margin-top: 40px;
		padding: 20px;
	}

	.stats-section .paralax-image .big-cta i {
		font-size: 45px;
	}

	.stats-section .paralax-image .big-cta .under {
		margin: 0;
	}

	.welcome,
	.vid-block,
	.news {
		padding: 80px 0;
	}

	.stats-section .paralax-image .image-hold::before {
	    background-image: linear-gradient(180deg, #243642a6 0%, #243642e3 55%);
	}

	.services .service-block .hover-info {
		display: none;
	}

	.vid-block .rounded-block .waste-panel p {
		max-width: 80%;
	}

	p {
		font-size: 14px;
	}

	.news .blog-post .image {
		height: 200px;
	}

	.hero .hero-overlay .form-hold .title {
		font-size: 18px;
	}

    .services-section {
        padding: 20px;
    }

    .services-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .about,
    .welcome {
        padding: 40px 0;
    }

    .slide-image {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .text-left, .text-right {
        text-align: center !important;
    }
}

@media (max-width: 400px) {

}
