/* Font name lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Lato', sans-serif !important;
    background: #838383 !important;
}

body>*:not(.header-wrapper) {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    /* overflow-x: hidden; */
}

/* TOP BAR STYLES */
.top-bar {
    background-color: #ffffff;
    color: #5b5b5b;
    padding: 8px 20px;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #5b5b5b;
    text-decoration: none;
    margin: 0 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-bar a img {
    margin-right: 5px;
}

.phone-line {
    border-right: 2px solid #caa554;
    padding-right: 2em;
}

/* HEADER WRAPPER - FIXED POSITIONING */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    display: block;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    background-color: transparent;
}

/* HEADER STYLES */
header {
    background-color: #caa554;
    padding: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}

header .container-fluid {
    padding: 0 40px;
    height: 72px;
    max-width: 1440px;
    margin: 0 auto;
}

/* BODY PADDING TO PREVENT CONTENT HIDING */
body {
    /* padding-top: calc(40px + 72px);  */
    padding-top: 100px !important;
}

/* Scrolled header styles */
body.scrolled header {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.scrolled .navbar-nav .nav-link {
    color: #000 !important;
}

body.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav open styles */
body.nav-open header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.nav-open .navbar-nav .nav-link {
    color: #000 !important;
}

body.nav-open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* NAVBAR STYLES */
.navbar-brand img {
    height: 88px;
    max-width: 100%;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    z-index: 1001;
    color: white !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 20px;
    font-weight: 400;
    padding: 8px 20px !important;
}

.products-dropdown > .nav-link {
    position: relative;
    padding-right: 34px !important;
}

.products-dropdown > .nav-link::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.products-dropdown > .nav-link.active::after {
    transform: translateY(-50%) rotate(180deg);
}

/* PRODUCTS DROPDOWN */
.products-dropdown {
    position: relative;
}

.products-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px;
    /* min-width: 427px; */
    max-width: 760px;
    width: 310px;
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
    margin-top: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid #e0e0e0;
}

.products-list {
    overflow: visible;
}

.products-menu::-webkit-scrollbar {
    width: 6px;
}

.products-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.products-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.products-menu::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.products-menu.show {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transform: none;
    pointer-events: auto;
}

/* First Level Submenu */
.product-submenu-wrapper {
    margin-bottom: 7px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.product-submenu-wrapper:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.product-submenu-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.product-submenu-title:hover {
    background-color: #f8f9fa;
}

.product-submenu-title.active {
    background-color: #e9ecef;
    color: #caa554;
    border-left: 2px solid #caa554;
}

.product-submenu-title .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-submenu-title.active .arrow {
    transform: rotate(180deg);
}

.product-submenu-items {
    display: none;
    /* padding-left: 20px; */
    margin-top: 5px;
}

.product-submenu-items.show {
    display: block;
}

@media (min-width: 992px) {
    .product-submenu-wrapper {
        position: relative;
    }

    .product-submenu-items {
        position: fixed;
        left: calc(100% + 12px);
        top: 0;
        margin-top: 0;
        padding: 12px;
        width: 420px;
        max-height: 70vh;
        overflow-y: auto;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 1002;
    }

    .product-submenu-items.show {
        display: block;
    }

    .product-submenu-title .arrow {
        transform: rotate(-90deg);
    }

    .product-submenu-title.active .arrow {
        transform: rotate(0deg);
    }
}

/* Second Level Submenu */
.product-sub-submenu-wrapper {
    margin-bottom: 8px;
}

.product-sub-submenu-title {
    font-weight: 600;
    font-size: 14px;
    color:#43b02a;
    padding: 8px 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.product-sub-submenu-title:hover {
    background-color: #f1f3f4;
}

.product-sub-submenu-title.active {
    background-color: #e8f0fe;
    color: #caa554;
    border-left: 2px solid #caa554;
    font-family: sans-serif;
}

.product-sub-submenu-title .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.product-sub-submenu-title.active .arrow {
    transform: rotate(180deg);
}

.product-sub-submenu-items {
    display: none;
    padding-left: 15px;
    margin-top: 3px;
}

.product-sub-submenu-items.show {
    display: block;
}

@media (min-width: 992px) {
    .product-sub-submenu-items {
        padding-left: 0px;
        margin-top: 0px;
    }
}

/* Product Links */
.product-link {
    display: block;
    padding: 6px 10px;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Lato';
    transition: all 0.3s ease;
    border-radius: 3px;
}

.product-link:hover {
    background-color: #f0f7ff;
    color: #0066cc;
    text-decoration: none;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .products-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        max-width: 100%;
        max-height: none;
        overflow-y: visible;
        z-index: auto;
        margin-top: 0 !important;
        padding-top: 0;
        transition: none;
        pointer-events: auto;
        display: none;
    }
    
    .products-menu.show {
        display: block;
    }
    
    .product-submenu-wrapper {
        margin-bottom: 5px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }
    
    .product-submenu-title {
        font-size: 14px;
        padding: 8px 10px;
        background-color: #f8f9fa;
    }
    
    .product-submenu-items {
        /* padding-left: 15px; */
        margin-top: 3px;
    }
    
    .product-sub-submenu-title {
        font-size: 13px;
        padding: 6px 8px;
        background-color: #f1f3f4;
    }
    
    .product-sub-submenu-items {
        padding-left: 10px;
        margin-top: 2px;
    }
    
    .product-link {
        font-size: 12px;
        padding: 4px 6px;
    }
}

/* Product Item (for Corporate Profile dropdown) */
.product-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.product-item:hover {
    background: #f7f7f7;
    text-decoration: none;
}

.product-item img {
    width: 50px;
    height: 50px;
    /* border-radius: 8px; */
    margin-right: 12px;
}

.product-item span {
    font-size: 14px;
    font-weight: 700;
}

/* MAIN HERO SECTION */
:root {
    --green: #2d5a3d;
    --gold: #d9b45a;
    --max-width: 1440px;
    --min-width: 320px;
}

.hero-title-top {
    font-size: 64px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    margin-bottom: 5px;
}

.coco-hero-slider {
    width: 100%;
    min-width: var(--min-width);
    max-width: 100%;
    height: 100vh;
    max-height: 760px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.coco-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}

.coco-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .7s ease-in-out;
    z-index: 1;
    display: block;
}

.coco-slide.active {
    opacity: 1;
    z-index: 2;
}

.coco-slide-icons {
    display: flex;
    gap: 60px;
    margin-top: 20px;
}

.banner3 {
    color: #000000 !important;
    font-size: 64px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 75px !important;
}

.banner4 {
    font-size: 64px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 75px !important;
}

.slide-icon {
    display: flex;
    align-items: center;
    gap: 25px;
}

.slide-icon-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.slide-icon-4 img {
    width: 54px;
    height: 54px;
}

.text-green .coco-slide-content h1,
.text-green .coco-slide-content h2,
.text-green .coco-slide-content p,
.text-green .coco-slide-content span,
.text-green .slider-text-4 {
    color: #004828 !important;
}

.slide-icon p {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.slide-icon p strong {
    font-size: 32px;
    color: #000000;
}

.slide-icon p span {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.coco-slide-content {
    position: relative;
    max-width: var(--max-width);
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 60px 40px;
    box-sizing: border-box;
    color: inherit;
    z-index: 5;
    pointer-events: auto;
}

.coco-slide-content.left {
    text-align: left;
}

.coco-slide-content.right {
    text-align: left;
    margin-left: auto;
    margin-right: 60px;
    max-width: 775px;
}

.slider-text-4 {
    font-size: 16px;
    font-weight: 400;
    color: #004828;
}

.coco-slide-content h1 {
    font-size: 60px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 50px;
}

.coco-sub {
    font-size: 35px;
    font-weight: 400;
    margin: 15px 0 0px 0;
}

.coco-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #CAA554;
    margin-top: 12px;
}

.coco-slide-content h2 {
    font-size: 55px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 75px;
}

.coco-desc {
    max-width: 480px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
}

.coco-desc-3 {
    max-width: 585px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
}

.coco-btn {
    display: inline-block;
    margin-top: 20px;
    background: #CAA554;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
}

.coco-btn:hover {
    background: #AE8630;
}

.coco-btn-3 {
    display: inline-block;
    margin-top: 20px;
    background: #00776F;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
}

.coco-btn-3:hover {
    background: #0D524D;
}

.coco-btn-4 {
    display: inline-block;
    margin-top: 20px;
    background: #004828;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
}

.coco-btn-4:hover {
    background: #02361F;
}

.coco-features-fixed {
    position: absolute;
    bottom: 5em;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    z-index: 50;
    display: none;
    box-sizing: border-box;
    padding: 0 24px;
}

.div2 {
    width: 100%;
    border-top: 1px solid #b99a67;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
    gap: 12px;
    flex-wrap: wrap;
    color: #fff;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-item img {
    width: 48px;
    height: auto;
    display: block;
}

.feature-item p {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.coco-slider-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 60;
    pointer-events: auto;
}

.coco-slider-dots span {
    width: 12px;
    height: 12px;
    background: rgba(45, 90, 61, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
}

.coco-slider-dots span.active {
    width: 12px;
    border-radius: 6px;
    background: #CAA554;
}


@media (max-width: 1024px) {

    .coco-slide-content h1,
    .coco-slide-content h2 {
        font-size: 40px;
    }

    .coco-desc {
        font-size: 16px;
    }

    .slider-2 {
        font-size: 64px !important;
        line-height: 35px !important;
    }

    .slider-2-desc {
        font-size: 22px !important;
        margin-top: 40px;
    }

    .coco-slide-content.right {
        text-align: left;
        margin-left: auto;
        margin-right: 60px;
        max-width: 645px;
    }
}

@media (max-width: 768px) {
    .coco-slide-content {
        padding: 60px 0px 0px;
        width: calc(100% - 60px);
    }

    .coco-slide-content h1 {
        font-size: 40px;
        font-weight: 900;
        color: rgb(255, 255, 255);
        line-height: 75px;
    }

    .coco-slide-content h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .coco-sub {
        font-size: 22px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .coco-slider-dots {
        bottom: 18px;
    }

    .coco-desc {
        max-width: 480px;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.4;
        margin-top: 33px;
    }

    .coco-slide-content.right {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 425px) {
    .coco-slide-content {
        padding: 30px 16px;
    }

    .coco-slide-icons {
        display: flex;
        gap: 29px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: center;
    }

    .slide-icon-4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .coco-slide-content {
        padding: 50px 0px 0px;
        width: calc(100% - 50px);
    }

    .slider-3 h1 {
        font-size: 30px !important;
        font-weight: 900 !important;
        color: black !important;
        line-height: 45px !important;
    }

    /* .slider-2 h1{
    line-height: 10px !important;
  }
   */
    .slider-3 {
        padding: 50px 0px 0px;
        width: calc(100% - 50px);
    }

    .slider-3 h1 {
        line-height: 45px !important;
    }

    .slider-4 {
        padding: 70px 0px 0px 12px !important;
        width: calc(100% - 50px) !important;
    }

    .slider-4 h1 {
        line-height: 50px !important;
    }

    .slider-3-icon p strong {
        font-size: 20px;
        color: #000000;
    }

    .slider-3-icon p span {
        font-size: 17px;
        font-weight: 400;
        color: #000000;
    }

    .coco-slide {
        background-position: bottom right;
        background-size: contain;
    }

    .coco-slide-content.right {
        margin-left: 25px;
        margin-right: 25px;
        max-width: 100%;
    }

}

.banner-overlay-img {
    width: 40% !important;
}

/* Banner-1 */

@media (min-width: 769px) and (max-width: 1024px) {
    .coco-sub {
        font-size: 34px;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .coco-slide-content h1 {
        font-size: 40px;
        font-weight: 900;
        color: rgb(255, 255, 255);
        line-height: 35px;
    }

    .coco-row {
        flex-direction: row !important;
        text-align: center;
        gap: 50px;
        margin-bottom: 20px;
    }

    .banner3 {
        line-height: 55px !important;
    }

    .banner4 {
        line-height: 55px !important;
    }

    .coco-sub {
        font-size: 24px;
    }

    .coco-tag {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        color: #CAA554;
        margin-top: 5px;
    }

    .coco-slide-content h2 {
        font-size: 24px;
        line-height: 40px;
    }

    .coco-desc {
        max-width: 480px;
        font-size: 18px;
        font-weight: 400;
        line-height: 20px;
        margin-top: 5px;
    }

    .banner-overlay-img {
        position: relative !important;
        width: 100% !important;
        max-height: 270px !important;
        object-fit: contain !important;
        /* margin-top: 15px !important; */
        order: 2 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        max-width: none !important;
    }

    .coco-btn {
        display: inline-block;
        margin-top: 10px;
        background: #CAA554;
        padding: 12px 28px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
    }

    .div2 {
        width: 100%;
        border-top: 1px solid #b99a67;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 15px;
        gap: 5px;
        flex-wrap: wrap;
        color: #fff;
    }


}

@media screen and (min-width: 320px) and (max-width: 425px) {

    .coco-slide-content h1 {
        font-size: 24px;
        font-weight: 900;
        color: rgb(255, 255, 255);
        line-height: 25px;
    }

    .coco-hydro-section {
        padding: 0px 0 20px 0px !important;
    }

    .coco-sub {
        font-size: 17px;
    }

    .protein-section {
        padding: 20px 20px !important;
    }

    .coco-tag {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        color: #CAA554;
        margin-top: 5px;
    }

    .coco-slide-content h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .coco-desc {
        max-width: 480px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-top: 5px;
    }

    .banner-overlay-img {
        width: 100% !important;
        /* max-height: 200px !important; */
        object-fit: contain !important;
        margin-top: 15px !important;
        order: 2 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .div2 {
        width: 100%;
        border-top: 1px solid #b99a67;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 22px;
        gap: 5px;
        flex-wrap: wrap;
        color: #fff;
    }

    .coco-btn {
        display: inline-block;
        margin-top: 10px;
        background: #CAA554;
        padding: 12px 28px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }
}

/* Banner-2 */
@media (min-width: 426px) and (max-width: 768px) {
    .slider-2 {
        font-size: 45px !important;
        line-height: 25px !important;
    }

    .slider-2-desc {
        font-size: 24px !important;
        margin-top: 0px !important;
        line-height: 35px !important;
    }

}

@media screen and (min-width: 320px) and (max-width: 425px) {
    .slider-2 {
        font-size: 25px !important;
        line-height: 15px !important;
    }

    .coco-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 33px;
        margin-top: 12px;
    }
}

/* Banner-3 */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .slider-3-coco-icons {
        display: flex !important;
        gap: 5px !important;
        margin-top: 25px !important;
    }

    .banner3 {
        font-size: 64px;
        font-weight: 900;
        color: rgb(255, 255, 255);
        line-height: 60px !important;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .slider-3-coco-icons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

}

@media screen and (min-width: 320px) and (max-width: 425px) {
    .slider-3 h1 {
        font-size: 24px !important;
        font-weight: 900 !important;
        color: black !important;
        line-height: 35px !important;
    }

    .slider-3 {
        padding: 40px 0px 0px;
    }

    .slider-3-icon p strong {
        font-size: 16px;
        color: #000000;
    }

    .slider-3-icon p span {
        font-size: 14px;
        font-weight: 400;
        color: #000000;
    }

    .icon-circle img {
        width: 35px;
        height: 35px;
    }

    .coco-slide-icons {
        display: flex;
        gap: 30px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: center;
        flex-direction: row;
        margin-bottom: 30px;
    }

    .coco-desc-3 {
        max-width: 585px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
        margin-top: 10px;
    }

    .slide-icon {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .coco-btn-3 {
        display: inline-block;
        margin-top: 5px;
        background: #00776F;
        padding: 12px 28px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }
}

/* Banner-4 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .coco-slide-content.right {
        text-align: left;
        margin-left: auto;
        margin-right: 15px;
        max-width: 500px;
    }

    .coco-slide-content {
        padding: 20px 15px;
    }

    .banner-overlay-img {
        width: 45% !important;
    }
}

@media screen and (min-width: 426px) and (max-width: 768px) {
    .banner-overlay-img.slider4 {
        position: relative !important;
        width: 100% !important;
        max-height: 385px !important;
        object-fit: contain !important;
        margin-top: 0px !important;
        order: 2 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        max-width: none !important;
    }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
    .coco-slide-content.right {
        margin-left: 6px;
        margin-right: 5px;
        max-width: 100%;
    }

    .slider-4 {
        padding: 40px 0px 0px 10px !important;
        width: calc(100% - 50px) !important;
    }

    .slider-4 h1 {
        line-height: 35px !important;
    }

    .coco-slide-icons {
        display: flex;
        gap: 20px;
        column-gap: 30px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: center;
        flex-direction: row;
        margin-bottom: 30px;
    }

    .coco-btn-4 {
        display: inline-block;
        margin-top: 0px;
        background: #004828;
        padding: 12px 25px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }
}

/* SECTION 2 - FEATURES */
#section2-wrapper {
    max-width: 1440px;
    /* margin: 60px auto; */
    padding: 10px 80px 0px;
    background-color: white;
}

.section2-box {
    background: #FFF9E8;
    border: 1px solid #E2C988;
    padding: 50px 60px;
    /* border-radius: 4px; */
}

.section2-main-title {
    font-size: 60px;
    font-weight: 700;
    color: #383838;
    line-height: 1.2;
}

.section2-main-title .sub {
    font-size: 50px;
    font-weight: 500;
}

.section2-divider {
    margin: 35px 0 45px;
    border: 0;
    border-top: 2px solid #bb994e;
}

.section2-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature {
    text-align: left;
}

.feature img {
    width: 50px;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.feature p {
    font-size: 18px;
    font-weight: 400;
    color: #5B5B5B;
    line-height: 25px;
}

/* PRODUCT CARDS */
#product-showcase {
    background: #01321e;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.product-cards {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    justify-content: space-evenly;
}

.f-card {
    background: #FFFFFF;
    width: 500px;
    padding: 40px 35px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f-tag {
    letter-spacing: 3px;
    color: #CAA554;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.f-title {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 900;
    color: #383838;
    margin-bottom: 15px;
}

.f-desc {
    font-size: 20px;
    color: #383838;
    line-height: 35px;
    margin-bottom: 25px;
    font-weight: 400;
}

.f-btn {
    background: #CAA554;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 24px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 30px;
}

.f-img-box {
    border: 1px solid #dac7a5;
    width: 250px;
    padding: 25px;
    margin-bottom: 25px;
}

.f-img-box img {
    width: 100%;
    object-fit: contain;
}

.f-learn {
    font-size: 24px;
    color: #5B5B5B;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

/* CERTIFICATIONS */
#certifications {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff8ea;
}

.certificates-img-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.certificates-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* INTRO SECTION */
.intro-section {
    width: 100%;
    background: #ffffff;
    padding: 60px 60px;
    display: flex;
    justify-content: center;
}

.intro-container {
    max-width: 1440px;
    width: 100%;
}

.intro-tag {
    color: #CAA554;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.intro-title {
    font-size: 60px;
    font-weight: 700;
    color: #383838;
    line-height: 1.15;
    margin-bottom: 10px;
}

.intro-desc {
    font-size: 20px;
    color: #5B5B5B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #033420;
    color: white;
    padding: 15px 28px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.intro-btn img {
    width: 22px;
}

.intro-btn:hover {
    background: #0f5b3a;
}

/* Enquiry Section style code*/
#enquiry-section {
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
}

.enquiry-title {
    font-size: 45px;
    color: #383838;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
}

.title-highlight {
    color: #333;
    font-weight: 800;
}

.title-highlight2 {
    color: #333;
    padding-left: 15px;
    font-weight: 400;
}

.title-highlight3 {
    color: #333;
    font-weight: 400;
    font-size: 40px;
}

.title-highlight4 {
    color: #333;
    font-weight: 400;
}

.enquiry-description {
    color: #5b5b5b;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 35px;
    font-weight: 400;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-link {
    color: #5B5B5B;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #6B8E23;
}

.enquiry-form-wrapper {
    background: white;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 520px;
    border-radius: 5px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 5px;
    min-height: auto;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    display: block;
    margin-top: 5px;
    min-height: 5px;
    transition: opacity 0.3s ease;
}

.form-label {
    display: block;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.form-label:after {
    content: " *";
    color: #ff0000;
}

.enquiry-input,
.enquiry-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
}

.enquiry-input:focus,
.enquiry-textarea:focus,
.form-control:focus {
    outline: none !important;
    border-color: #ddd !important;
    box-shadow: 0 0 0 2px #ddd !important;
}

.form-control:focus {
    box-shadow: none !important;
}

.form-control {
    padding: 12px !important;
    transition: all 0.3s ease !important;
}

#quick-phone {
    padding: 12px 15px !important;
    font-size: 16px !important;
}

#quick-phone::placeholder {
    font-size: 13px !important;
    color: #999 !important;
    opacity: 1 !important;
}

.enquiry-input::placeholder,
.enquiry-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 0.5;
}

#phoneNumber::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 0.5;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 0;
}

#phoneNumber {
    width: 100%;
    padding: 12px 15px 12px 95px !important;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
}

#phoneNumber:focus {
    outline: none;
    border: 1px solid #ddd !important;
}

.iti__country-list {
    max-width: 350px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow-x: clip;
}

.iti__selected-flag {
    position: relative;
    padding: 0 20px 0 15px;
    display: flex;
    align-items: center;
    gap: 1px;
    background-color: transparent !important;
    margin-top: -4px;
}

.iti__flag {
    order: 1;
}

.iti__selected-dial-code {
    order: 2;
    margin-left: 5px;
    font-size: 0.95rem;
    color: #333;
}

.iti__arrow {
    order: 3;
    margin-left: 8px;
    position: absolute;
    right: 10px;
}

.iti__selected-flag::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 25px;
    background-color: #C6C6C6;
}

.phone-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.phone-error.show {
    display: block;
}

.enquiry-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-enquiry {
    width: 100%;
    background-color: #084A2F;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-enquiry:hover {
    background-color: #79c220;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(121, 194, 32, 0.3);
}

.btn-submit-enquiry:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
    border: 1px solid #c3e6cb;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    #enquiry-section {
        padding: 50px 20px;
    }

    .enquiry-info {
        padding-right: 0;
        text-align: center;
    }

    .enquiry-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .enquiry-description {
        font-size: 1rem;
        text-align: left;
    }


    .contact-items {
        align-items: self-start;
    }

    .enquiry-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #enquiry-section {
        padding: 40px 15px;
    }

    .enquiry-title {
        font-size: 2rem;
        font-size: 48px;
        color: #383838;
        font-weight: 700;
        line-height: 45px;
        margin-bottom: 25px;
    }

    .enquiry-description {
        font-size: 1rem;
    }

    .enquiry-form-wrapper {
        padding: 25px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-link {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    #enquiry-section {
        padding: 30px 15px;
    }

    .enquiry-title {
        font-size: 1.7rem;
    }

    .enquiry-form-wrapper {
        padding: 20px;
    }

    .btn-submit-enquiry {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .products-grid-footer {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .left-content {
        flex: 1 1 320px;
        padding-left: 0em;
    }

    .right-image {
        flex: 1 1 200px;
        text-align: start;
    }

    .product-item {
        align-items: flex-start;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        color: #333;
        flex-direction: column;
        align-content: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-menu {
        padding: 0px 10px 0px 25px !important;
    }

}

@media (max-width: 400px) {
    .enquiry-title {
        font-size: 1.5rem;
    }

    .enquiry-description {
        font-size: 0.95rem;
    }

    .contact-link {
        font-size: 18px;
    }
}

@media (min-width: 320px) and (max-width: 374px) {
    .enquiry-title {
        font-size: 1.4rem;
    }

    .enquiry-form-wrapper {
        padding: 15px;
    }
}

/* --------------- new code */
/* MAIN SECTION */
.support-section {
    width: 100%;
    padding: 30px 0;
    background: #fff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ITEMS */
.support-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */
/* .support-icon {
    width: 55px;
    height: auto;
    object-fit: contain;
} */

/* TEXT */
.support-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #5B5B5B;
    line-height: 1.4;
    margin: 0;
}

/* DIVIDER LINE */
.support-divider {
    width: 2px;
    height: 65px;
    background: #383838;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .support-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .support-divider {
        width: 75%;
        height: 2px;
    }

    .support-item {
        justify-content: center;
    }

    .support-icon {
        width: 48px;
    }
}

/* Enquiry Section style end */

/* RESPONSIVE STYLES */

/* Tablets and below - 992px */
@media (max-width: 991.98px) {
    body {
        padding-top: calc(40px + 72px);
    }

    .top-bar {
        font-size: 12px;
        padding: 6px 15px;
    }

    .footer-top {
        flex-direction: column;
        gap: 18px;
        padding-left: 15px;
    }

    .top-bar a {
        margin: 0 8px;
    }

    header .container-fluid {
        padding: 0 20px;
    }

    .navbar-collapse.show {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px;
        z-index: 99999;
    }

    header .navbar-collapse.show .navbar-nav .nav-link {
        color: #000 !important;
    }

    .products-menu {
        position: static;
        box-shadow: none;
        min-width: auto;
        transform: none;
        max-height: 60vh;
        overflow-y: auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .parent {
        padding: 0 20px;
    }

    .div1 {
        /* flex-direction: column; */
        gap: 30px;
    }

    .left-content {
        text-align: left;
    }

    .right-image {
        text-align: center;
    }

    .hero-title-top {
        font-size: 36px;
    }

    .main-heading {
        font-size: 40px;
    }

    .hero-desc {
        width: 100%;
    }

    .section2-main-title {
        font-size: 40px;
    }

    .section2-main-title .sub {
        font-size: 30px;
    }

    .coco-sec {
        padding: 40px 0 !important;
    }

    .section2-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .f-card {
        width: 100%;
        max-width: 500px;
    }

    .intro-section {
        padding: 60px 20px;
    }

    .intro-title {
        font-size: 48px;
    }

    .intro-desc {
        font-size: 18px;
    }

    #enquiry-section {
        padding: 50px 20px;
    }

    .enquiry-info {
        padding-right: 0;
        text-align: left;
        margin-bottom: 30px;
    }

    .enquiry-title {
        font-size: 40px;
        line-height: 50px;
    }

    .enquiry-description {
        font-size: 24px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    body {
        padding-top: calc(35px + 70px);
    }

    .top-bar {
        font-size: 11px;
        padding: 5px 10px;
        gap: 5px;
    }

    .phone-line {
        padding-right: 1em;
    }

    header .container-fluid {
        height: 70px;
        padding: 0 15px;
    }

    .navbar-brand img {
        height: 86px;
        margin-top: -13px;
    }

    .hero-banner {
        padding: 40px 0 30px;
    }

    .hero-title-top {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .main-heading {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .request-btn {
        font-size: 16px;
        padding: 12px 22px;
    }

    .div2 {
        gap: 15px;
        bottom: 9em;
        /* padding-top: 25px;
        margin-top: 30px; */
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    #section2-wrapper {
        padding: 0 20px;
        /* margin: 40px auto; */
    }

    .section2-box {
        padding: 35px 25px;
    }

    .section2-main-title {
        font-size: 40px;
    }

    .section2-main-title .sub {
        font-size: 30px;
    }

    .section2-features {
        grid-template-columns: 2;
        gap: 30px;
    }

    .intro-section {
        padding: 20px 20px;
    }

    .intro-tag {
        font-size: 20px;
    }

    .intro-title {
        font-size: 40px;
    }

    .intro-desc {
        font-size: 18px;
    }

    .intro-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .enquiry-title {
        font-size: 36px;
        line-height: 45px;
    }

    .enquiry-description {
        font-size: 20px;
    }

    .enquiry-form-wrapper {
        padding: 30px;
    }
}

/* Small mobile - 576px and below */
@media (max-width: 576px) {
    .top-bar {
        gap: 8px;
        padding: 8px 10px;
    }

    .div1 {
        flex-direction: column;
        gap: 30px;
    }

    .phone-line {
        border-right: none;
        padding-right: 0;
    }

    .f-tag {
        letter-spacing: 3px;
        color: #CAA554;
        font-weight: 700;
        font-size: 17px;
        margin-bottom: 15px;
    }

    .f-title {
        font-size: 25px;
    }

    .f-desc {
        font-size: 18px;
        line-height: 25px;
    }

    .f-btn {
        font-size: 18px;
    }

    .f-learn {
        font-size: 18px;
    }

    .request-btn {
        width: 50% !important;
    }

    .product-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero-title-top {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .main-heading {
        font-size: 32px;
    }

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

    .request-btn {
        width: 100%;
    }

    .div2 {
        flex-direction: row !important;
        gap: 0px;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        bottom: 7em;
    }

    .coco-features-fixed {
        position: absolute;
        bottom: 2em;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: var(--max-width);
        z-index: 50;
        display: none;
        box-sizing: border-box;
        padding: 0 24px;
    }

    .feature-item img {
        width: 35px;
        height: auto;
        display: block;
    }

    .feature-item {
        width: 100%;
    }

    .section2-box {
        padding: 25px 20px;
    }

    .section2-main-title {
        font-size: 26px;
    }

    .section2-main-title .sub {
        font-size: 22px;
    }

    .intro-section {
        padding: 20px 20px;
    }

    .intro-tag {
        font-size: 18px;
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-desc {
        font-size: 15px;
    }

    #enquiry-section {
        padding: 60px 10px;
    }

    .enquiry-title {
        font-size: 28px;
        line-height: 38px;
    }

    .enquiry-description {
        font-size: 18px;
    }

    .enquiry-form-wrapper {
        padding: 25px;
    }
}

/* Extra small mobile - 320px to 480px */
@media (min-width: 320px) and (max-width: 480px) {
    body {
        padding-top: calc(70px + 10px) !important;
    }

    .top-bar {
        padding: 6px 10px;
        font-size: 10px;
    }

    header .container-fluid {
        height: 32px;
        padding: 0px 25px;
    }

    .navbar-brand {
        padding: 0px !important;
        margin: 0px !important;
    }

    .navbar-brand img {
        height: 50px;
        margin-top: -10px;
    }

    .parent {
        padding: 0 15px;
    }

    .hero-banner {
        padding: 20px 0 0px;
    }

    .hero-title-top {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .sub-heading {
        font-size: 14px;
    }

    .main-heading {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .request-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    #section2-wrapper {
        padding: 0 15px;
        /* margin: 30px auto; */
    }

    .section2-box {
        padding: 20px 15px;
    }

    .section2-main-title {
        font-size: 24px;
    }

    .section2-main-title .sub {
        font-size: 20px;
    }

    .section2-divider {
        margin: 20px 0 20px !important;
    }

    .feature h4 {
        font-size: 15px;
    }

    .coco-sec {
        padding: 20px 0px !important;
    }

    .coco-text h2 {
        font-size: 24px !important;
    }

    .coco-text h2 {
        margin-bottom: 5px !important;
    }

    .coco-row,
    .coco-row.reverse {
        gap: 5px !important;
    }


    .feature p {
        font-size: 14px;
        line-height: 22px;
    }

    .intro-section {
        padding: 20px 20px;
    }

    .intro-tag {
        font-size: 16px;
        letter-spacing: 2px;
    }

    #certifications {
        padding: 20px 20px;
    }

    .intro-title {
        font-size: 24px;
    }

    .intro-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .f-card {
        padding: 20px 15px;
    }

    #product-showcase {
        padding: 20px 20px;
    }

    .cleanest-label-section {
        padding: 20px 20px !important;
    }

    .cl-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .cl-subtitle {
        font-size: 15px !important;
    }

    .cl-header {
        width: 100%;
        margin-bottom: 20px !important;
    }

    .cl-icons-row {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        row-gap: 0px !important;
        margin-bottom: 0px !important;
    }

    .cl-description {
        font-size: 15px !important;
        line-height: 26px;
    }

    .intro-btn {
        font-size: 15px;
        padding: 10px 18px;
    }

    .intro-btn img {
        width: 18px;
    }

    #enquiry-section {
        padding: 50px 5px;
    }

    .cl-content-row {
        flex-direction: column;
        gap: 0px !important;
    }

    .section2-features {
        grid-template-columns: 2;
        gap: 15px !important;
    }

    .enquiry-title {
        font-size: 24px;
        line-height: 32px;
    }

    .enquiry-description {
        font-size: 16px;
    }

    .contact-link {
        font-size: 18px;
    }

    .enquiry-form-wrapper {
        padding: 20px 15px;
    }

    .btn-submit-enquiry {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* ================================
   CLEANEST LABEL SECTION (DESKTOP)
=================================== */

.cleanest-label-section {
    width: 100%;
    padding: 60px 60px;
    display: flex;
    justify-content: center;
    background: #fff;
}

.cleanest-label-container {
    width: 100%;
    max-width: 1440px;
}

.cl-header {
    width: 100%;
    margin-bottom: 40px;
}

.cl-title {
    font-size: 60px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cl-subtitle {
    font-size: 20px;
    color: #5B5B5B;
}

.cl-content-row {
    width: 100%;
    display: flex;
    gap: 110px;
    align-items: flex-start;
}

.cl-left {
    flex: 1 1 55%;
}

.cl-right {
    flex: 1 1 45%;
}

.cl-right img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.cl-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 30px;
}

.cl-icon-box {
    text-align: left;
}

.cl-icon-box img {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
}

.cl-icon-box p {
    font-size: 24px;
    font-weight: 500;
    color: #383838;
}

.cl-description {
    font-size: 20px;
    line-height: 35px;
    color: #5B5B5B;
    font-weight: 400;
}

/* LARGE TABLET (1025px - 1365px) */

@media (max-width: 1365px) {
    .cl-title {
        font-size: 70px;
    }

    .cl-description,
    .cl-subtitle {
        font-size: 22px;
    }

    .cl-icons-row {
        gap: 40px;
    }
}

/* TABLET PORTRAIT (768px - 1024px) */

@media (max-width: 1024px) {
    .cleanest-label-section {
        padding: 60px 40px;
    }

    .cl-title {
        font-size: 55px;
    }

    .cl-content-row {
        width: 100%;
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .cl-description,
    .cl-subtitle {
        font-size: 20px;
    }

    .cl-icon-box p {
        font-size: 20px;
    }

    .cl-icons-row {
        margin-bottom: 5px;
    }

    .cl-icons-row {
        gap: 0px;
    }
}

/* MOBILE (≤767px) */

@media (max-width: 767px) {
    .cleanest-label-section {
        padding: 40px 20px;
    }

    .cl-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .cl-subtitle {
        font-size: 16px;
    }

    .cl-description {
        font-size: 16px;
        line-height: 26px;
    }

    .cl-content-row {
        flex-direction: column;
        gap: 30px;
    }

    .cl-icons-row {
        gap: 25px;
    }

    .cl-icon-box img {
        width: 40px;
        height: 40px;
    }

    .cl-icon-box p {
        font-size: 16px;
    }
}

/* ============================
   COCONUT COMPARE SECTION
============================= */
.coco-sec {
    width: 100%;
    padding: 50px 0;
    background: #fff;
}

.coco-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.coco-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
}

.coco-row.reverse {
    flex-direction: row-reverse;
}

.coco-text {
    flex: 1;
    max-width: 680px;
}

.coco-text h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #383838;
}

.coco-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #5B5B5B;
    text-align: left;
}

.coco-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.coco-img img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.coco-img.tree img {
    max-width: none;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .coco-row {
        gap: 60px;
        margin-bottom: 20px;
    }

    .coco-text h2 {
        font-size: 44px;
    }

    .coco-text p {
        font-size: 20px;
    }

    .coco-img img {
        max-width: 420px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .coco-row {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        margin-bottom: 20px;
    }

    .coco-text h2 {
        font-size: 38px;
    }

    .coco-text p {
        font-size: 18px;
    }

    .coco-img img {
        max-width: 380px;
    }
}

@media (max-width: 767px) {
    .coco-container {
        padding: 0 20px;
    }

    .coco-row,
    .coco-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 20px;
    }

    .coco-text h2 {
        font-size: 32px;
        line-height: 1.3;
        text-align: left;
    }

    .coco-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .coco-img img {
        max-width: 280px;
    }
}

/* ============================
   COCONUT HYDROLYSATE CARDS
============================= */

.coco-hydro-section {
    width: 100%;
    padding: 0px 0 60px 0px;
    background: #fff;
}

.coco-hydro-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.coco-hydro-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 80px;
    width: 80%;
    display: inline-block;
}

.coco-hydro-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.coco-hydro-card {
    background: #FFF8EA;
    border: 1px solid #CAA554;
    width: 100%;
    max-width: 360px;
    padding: 50px 20px;
    text-align: center;
}

.h3,
h3 {
    font-size: 22px !important;
}

.coco-hydro-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
}

.coco-hydro-card h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
    line-height: 35px;
    margin-bottom: 15px;
}

.coco-hydro-sub {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.cpfaq-text {
    margin-bottom: 10px
}

.coco-hydro-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coco-hydro-card ul li {
    font-size: 19px;
    color: #000000;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

ul li img {
    margin-right: 10px;
}

@media (max-width: 1366px) {
    .coco-hydro-title {
        font-size: 34px;
    }
}

@media (max-width: 1023px) {
    .coco-hydro-cards {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .coco-hydro-container {
        padding: 0 20px;
    }

    .coco-hydro-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 25px;
        text-align: left;
        width: 100%;
    }

    .coco-hydro-card {
        max-width: 100%;
        padding: 20px 20px;
    }

    .coco-hydro-icon {
        width: 55px;
        height: 55px;
    }

    .coco-hydro-card h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .coco-hydro-card ul li {
        font-size: 16px;
    }
}

/* ----Coconut Hydrolysate card section----------- */
.rosun-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    background: #F8F1E0;
}

.rosun-protein-section {
    gap: 40px;
    margin-bottom: 50px;
}


.rosun-title-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}


.rosun-title-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}


.rosun-title-image img {
    width: 280px;
    height: auto;
    border-radius: 12px;
}


/* Grid */
.rosun-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.rosun-item {
    background: #FFF;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


.rosun-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}


.rosun-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}


.rosun-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #C48A00;
    margin-top: auto;
}


/* Bottom Icons */
.rosun-bottom-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


.rosun-bottom-icons img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    opacity: .9;
}


/* Responsive */
@media (max-width: 1024px) {
    .rosun-title-row {
        flex-direction: column;
        text-align: center;
    }

    .rosun-title-image img {
        width: 220px;
    }

    .rosun-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {
    .rosun-grid {
        grid-template-columns: 1fr;
    }

    .rosun-title-text h2 {
        font-size: 30px;
    }

    .rosun-title-image img {
        width: 180px;
    }
}


/* ------rosun protein section--------------- */

.protein-section {
    background-color: #F5EFE7;
    padding: 80px 20px;
    min-width: 320px;
    max-width: 1440px;
    margin: 0 auto;
}

.protein-container {
    max-width: 1200px;
    margin: 0 auto;
}

.protein-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.protein-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #383838;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.protein-content p {
    font-size: 20px;
    color: #5B5B5B;
    margin-bottom: 12px;
    text-align: left;
}

.protein-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.protein-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
}

.protein-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.protein-card {
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    align-items: flex-start;
}

.protein-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.protein-icon img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.protein-description {
    font-size: 20px;
    color: #5B5B5B;
    line-height: 1.6;
}

.protein-cta {
    font-size: 20px;
    font-weight: 900;
    color: #CAA554;
}

/* Desktop (≥1440px) */
@media screen and (min-width: 1440px) {
    .protein-section {
        padding: 60px 40px;
    }

    .protein-header {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 10px;
    }

    .protein-content h1 {
        font-size: 60px;
    }

    .protein-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Laptop / Tablet Landscape (1024px to 1366px) */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .protein-section {
        padding: 60px 40px;
    }

    .protein-header {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 50px;
    }

    .protein-content h1 {
        font-size: 48px;
    }

    .protein-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Tablet Portrait (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .protein-section {
        padding: 40px 20px;
    }

    .cleanest-label-section {
        padding: 40px 20px;
    }

    .cl-title {
        font-size: 40px;
    }

    .coco-hydro-title {
        margin-bottom: 30px;
        width: 100%;
    }

    .protein-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .protein-content h1 {
        font-size: 40px;
        text-align: left;
    }

    .protein-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .protein-image {
        max-width: 250px;
    }
}

/* Mobile (320px to 767px) */
@media screen and (max-width: 767px) {
    .protein-section {
        padding: 40px 20px;
    }

    .protein-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 40px;
    }

    .protein-content h1 {
        font-size: 32px;
        text-align: left;
    }

    .protein-content p {
        font-size: 16px;
        text-align: left;
    }

    .protein-image {
        max-width: 200px;
    }

    .protein-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .protein-card {
        gap: 15px;
    }

    .protein-icon {
        width: 44px;
        height: 44px;
    }

    .protein-icon img {
        width: 26px;
        height: 26px;
    }

    .protein-description {
        font-size: 15px;
    }

    .protein-cta {
        font-size: 17px;
    }
}

/* Small Mobile (320px to 480px) */
@media screen and (max-width: 480px) {
    .protein-content h1 {
        font-size: 24px;
        font-weight: 700;
        color: #383838;
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: left;
    }

    .protein-content p {
        font-size: 15px;
        line-height: 30px;
    }

    .protein-header {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
        margin-bottom: 15px;
    }

    .protein-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .cpfaq-section {
        padding: 20px 20px;
    }

    .support-section {
        padding: 5px 0 !important;
    }


}

/* FAQ section */

.cpfaq-section {
    background-color: #E5E5E5;
    padding: 60px 20px;
    min-width: 320px;
    max-width: 1440px;
    margin: 0 auto;
}

.cpfaq-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.cpfaq-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 50px;
}

.cpfaq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cpfaq-block {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.cpfaq-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 8px;
    background-color: #CAA554;
}

.cpfaq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 60px 28px 24px;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    color: #383838;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.cpfaq-question:hover {
    background-color: #F9F9F9;
}

.cpfaq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 32px;
    font-weight: 500;
    color: #383838;
}

.cpfaq-block.cpfaq-open .cpfaq-question::after {
    content: '-';
}

.cpfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.cpfaq-block.cpfaq-open .cpfaq-answer {
    max-height: 600px;
    padding: 0 24px 28px 24px;
}

.cpfaq-answer-text {
    font-size: 20px;
    color: #555555;
    line-height: 1.7;
}

@media screen and (min-width: 1440px) {
    .cpfaq-section {
        padding: 60px 40px;
    }

    .cpfaq-heading {
        font-size: 60px;
        margin-bottom: 70px;
        color: #000;
    }

    .cpfaq-question {
        font-size: 20px;
        padding: 32px 60px 32px 28px;
        color: #383838;
        font-weight: 700;
    }

    .cpfaq-answer-text {
        font-size: 20px;
        color: #383838;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .cpfaq-section {
        padding: 60px 30px;
    }

    .cpfaq-heading {
        font-size: 44px;
    }

    .cpfaq-question {
        font-size: 20px;
    }

    .cpfaq-answer-text {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cpfaq-section {
        padding: 40px 20px;
    }

    .cpfaq-heading {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .cpfaq-question {
        font-size: 18px;
        padding: 24px 55px 24px 22px;
    }

    .cpfaq-answer-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cpfaq-section {
        padding: 50px 16px;
    }

    .cpfaq-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cpfaq-list {
        gap: 16px;
    }

    .cpfaq-block::before {
        width: 60px;
        height: 6px;
    }

    .cpfaq-question {
        font-size: 16px;
        padding: 20px 50px 20px 18px;
    }

    .cpfaq-question::after {
        font-size: 26px;
        right: 18px;
    }

    .cpfaq-block.cpfaq-open .cpfaq-answer {
        padding: 0 18px 20px 18px;
    }

    .cpfaq-answer-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .cpfaq-heading {
        font-size: 24px;
    }

    .cpfaq-question {
        font-size: 14px;
        padding: 18px 45px 18px 16px;
    }

    .cpfaq-question::after {
        font-size: 22px;
    }

    .coco-hydro-sub {
        font-size: 16px !important;
        color: #000000;
        margin-bottom: 15px;
    }
}


/* CEO section */
.ceo-section {
    background: #F4F4F4;
    padding: 80px 60px;
    border-top: 2px solid #d0b16d;
}

.ceo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    max-width: 1400px;
    margin: auto;
}

.ceo-left {
    width: 60%;
}

.ceo-right {
    width: 35%;
    display: flex;
    justify-content: center;
}

.ceo-title {
    font-size: 32px;
    font-weight: 900;
    color: #383838;
    margin-bottom: 30px;
}

.ceo-name {
    font-size: 60px;
    font-weight: 900;
    color: #383838;
    margin: 0px 0px 15px 0px;
}

.ceo-position {
    font-size: 60px;
    font-weight: 300;
    color: #4a4a4a;
    margin: 10px 0 25px;
}

.ceo-welcome {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
}

.ceo-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #555;
    max-width: 90%;
}

.ceo-img {
    width: 100%;
    height: auto;
    display: block;
}

.name {
    padding-left: 6em;
}

/* Responsive */
@media(max-width: 992px) {
    .ceo-container {
        flex-direction: column;
        text-align: left;
    }

    .ceo-left,
    .ceo-right {
        width: 100%;
    }

    .ceo-text {
        max-width: 100%;
    }

    .ceo-img-frame {
        margin-top: 30px;
    }
}

/* ===========================
   CEO About Content Section
   =========================== */

.about-content-section {
    padding: 60px 40px;
    background: #ffffff;
}

.about-container {
    max-width: 900px;
    margin: auto;
    color: #333;
}

.about-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #383838;
    margin-top: 35px;
    margin-bottom: 15px;
}

.about-container p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 18px;
    color: #5B5B5B;
}

.about-container ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.about-container ul li {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 8px;
    color: #5B5B5B;
}

.ceo-signoff {
    margin-top: 30px;
    font-size: 15px;
    line-height: 25px;
}

.regards {
    font-size: 15px;
    line-height: 25px;
    color: #5B5B5B;
}

/* ===========================
   Responsive Styles
   =========================== */

@media (max-width: 1024px) {
    .about-content-section {
        padding: 50px 30px;
    }

    .about-container {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 40px 20px;
    }

    .ceo-name {
        font-size: 40px;
        font-weight: 900;
        color: #383838;
        margin: 0px 0px 10px 0px;
    }

    .ceo-title {
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .ceo-section {
        background: #F4F4F4;
        padding: 60px 60px;
        border-top: 2px solid #d0b16d;
    }

    .ceo-position {
        font-size: 40px;
        font-weight: 300;
        color: #4a4a4a;
        margin: 10px 0 25px;
    }

    .ceo-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        color: #555;
        max-width: 100%;
    }

    .about-container h2 {
        font-size: 22px;
        margin-top: 25px;
    }

    .about-container p,
    .about-container ul li {
        font-size: 16px;
        line-height: 30px;
    }
}

.about-container ul {
    padding-left: 18px;
}

.ceo-signoff {
    font-size: 14px;
    line-height: 22px;
}

@media (max-width: 480px) {
    .about-content-section {
        padding: 10px 10px;
    }

    .about-container h2 {
        font-size: 20px;
        font-weight: 600;
        color: #383838;
        margin-top: 0px;
        margin-bottom: 15px;
    }

    .about-container p,
    .about-container ul li {
        font-size: 15px;
        line-height: 30px;
    }

    .ceo-section {
        background: #F4F4F4;
        padding: 20px 15px;
        border-top: 2px solid #d0b16d;
    }

    .name {
        padding-left: 0em;
    }

    .ceo-title {
        font-size: 24px;
        /* font-weight: 900;
    color: #383838; */
    }

    .ceo-name {
        font-size: 25px;
        line-height: 35px;
        /* font-weight: 900;
    color: #383838;
    margin: 0; */
    }

    .ceo-position {
        font-size: 28px;
        /* font-weight: 300;
    color: #4a4a4a; */
        margin: 10px 0 10px;
    }

    .ceo-title {
        margin-bottom: 10px;
        margin-top: 35px;
    }
}

/* Updated Nested Products Dropdown */
.products-list {
    display: flex;
    flex-direction: column;
    width: 270px;
    /* padding: 10px 0; */
}

.product-submenu-title {
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    user-select: none;
}

.product-submenu-title:hover {
    background: #f7f7f7;
}

.product-submenu-title .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.product-submenu-title.active .arrow {
    transform: rotate(90deg);
}

.product-submenu-items {
    display: none;
    /* padding-left: 20px; */
    background: #fff;
    border-left: 2px solid #f0f0f0;
    /* margin-left: 5px; */
}

.product-submenu-items.show {
    display: block;
}

.products-list>.product-item {
    padding: 12px;
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
    .products-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px !important;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
        min-width: auto;
    }

    .products-menu.show {
        display: block;
        transform: none;
        padding-left: 0px !important;
        border: none;
    }

    .products-list {
        width: 100%;
    }
}