﻿:root {
    --primary-color: #166534;
    --text-color: #FFFFFF;
    --secondary-color: #1D2E24;
    --accent-color: #FFA900;
    --bg-color: #EFECE3;
}
.bg-cream {
    background-color: #EFECE3;
    position: relative;
    overflow: hidden;
}
.header-banner {
    position: relative;
    background-color: #0F5132;
    padding: 70px 0;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    overflow: hidden;
    max-width: 97%;
    margin: 30px 0;
}

.header-img {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
}

.header-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.header-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 0 0;
    color: var(--text-color);
    position: relative;
    z-index: 5;
}

.header-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 30px;
    margin-top: 0;
}

.header-description ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.header-description ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.header-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1;
}

.button-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    margin-top: 10px;
}

.explore-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #FFA900;
    color: #F7F6F2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    z-index: 10;
    border: none;
    letter-spacing: 0.5px;
}

.explore-button:hover {
    opacity: 0.9;
    color: #F7F6F2;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}
    .nav-wrap .nav-menu {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2.25rem;
        height: 80px;
        background-color: #1D2E24CC;
        color: #fff;
        border-radius: 40px;
    }
.logo {
    margin-right: 20px;
}

.logo img {
    max-height: 50px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #1D2E24CC;
    border-radius: 9999px;
    padding: 16px 40px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-item {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
    color: var(--text-color);
    text-decoration: none;
}

.btn-style4 {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-style4:hover {
    opacity: 0.9;
    color: var(--text-color);
    text-decoration: none;
}

.btn-style4 svg {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu-mobile {
        display: block;
    }
    
    .header-banner {
        padding: 40px 0;
        border-top-right-radius: 150px;
        border-bottom-right-radius: 150px;
        max-width: 95%;
    }
    
    .header-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .header-description ul li {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .explore-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {

    .section-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 10px;
    }
    
    .header-banner {
        padding: 30px 0;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .header-content {
        padding: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .button-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-img {
        margin-bottom: 20px;
    }
    
    .header-description ul li {
        font-size: 14px;
        text-align: left;
    }
}

@media (min-width: 993px) {
    .nav-menu-mobile {
        display: none;
    }
    
    .nav-mobile-wrapper {
        display: none;
    }
}

.hover-shake {
    transition: transform 0.3s ease;
}

.hover-shake:hover {
    animation: shake 0.5s ease infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.menu-container-2 {
    position: relative;
}

.dropdown-menu-2 {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.dropdown-menu-2 a {
    display: block;
    padding: 8px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu-2 a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-container-2:hover .dropdown-menu-2 {
    display: block;
}

.pr-1 {
    padding-right: 8px;
}


.bg-white {
    background-color: #FFFFFF;
}

.bg-cream {
    background-color: #EFECE3;
    position: relative;
    overflow: hidden;
}

/* Styling for About Section */
.about-section {
    background-color: #EFECE3;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header-text {
    text-align: center;
}

.main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1.2;
    color: #78BD47;
    text-align: center;
}

.sub-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #525252;
    margin: 0 0 15px 0;
    text-align: center;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.2;
    color: #000000;
    text-align: center;
    max-width: 1000px;
    margin: 0;
}

.product-cards-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.product-card-horizontal {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 600px;
    height: 374px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card-horizontal .card-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.product-card-horizontal .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-horizontal .card-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #FFFFFF;
}

.product-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    color: #78BD47;
    margin: 0 0 15px 0;
}

.product-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #525252;
    margin: 0 0 20px 0;
}

.action-button {
    background-color: #FFA900;
    color: #F7F6F2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    color: #F7F6F2;
    text-decoration: none;
}

/* Responsive styles for About section */
@media (max-width: 1200px) {
    .product-cards-row {
        justify-content: center;
    }
    
    .product-card-horizontal {
        width: 90%;
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 50px;
    }
    
    .sub-title {
        font-size: 34px;
    }
    
    .about-description {
        font-size: 18px;
    }
    
    .product-card-horizontal {
        width: 95%;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
    }

    .about-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .sub-title {
        font-size: 22PX;
    }

    .about-description {
        font-size: 16px;
        padding: 0px 20px;
        text-align: justify;
    }
    
    .product-card-horizontal {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    
    .product-card-horizontal .card-image,
    .product-card-horizontal .card-content {
        width: 100%;
    }
    
    .product-card-horizontal .card-image {
        height: 200px;
    }
    
    .product-card-horizontal .card-content {
        padding: 20px 15px;
    }
}

/* Main introduction section */
#introduction {
    background-color: #EFECE3;
    position: relative;
    padding: 20px 0 50px;
}

    #introduction::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55%;
        background-color: #20704D;
        z-index: 0;
        border-top-left-radius: 251px;
        border-top-right-radius: 251px;
    }

#introduction .container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
}

.intro-header {
    text-align: center;
    padding: 20px 0 30px;
}

.intro-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 38.4px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    color: #82C408;
}

    .intro-title .sub-title {
    
        font-size: 47px;
        line-height: 120%;
        font-weight: 900;
        letter-spacing: 0;
        text-transform: none;
    }

@media (max-width: 768px) {
    .intro-title {
        font-size: 42px;
        line-height: 30px;
    }

        .intro-title .sub-title {
            display: block;
            font-size: 28px;
            line-height: 120%;
        }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 32px;
        line-height: 26px;
    }

        .intro-title .sub-title {
            display: block;
            font-size: 22px;
            padding-top: 10px;
        }

    .intro-header {
        padding: 40px 0 0px;
    }
}


.intro-main {
    display: flex;
    position: relative;
    min-height: 550px;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.main-circle-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    z-index: 1;
}

.main-circle {
    width: 100%;
    height: 100%;
    background: #EFECE3;
    border-radius: 50%;
    border: 10px solid #7FBA00;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-circle img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    z-index: 1;
}

.indicator-circle {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 10px solid #7FBA00;
    background: #EFECE3;
}

.feature-bullet {
    display: none;
}

.main-circle-container .indicator-circle.top-left {
    top: 0%;
    left: 65px;
}

.main-circle-container .indicator-circle.top-right {
    top: 0%;
    right: 65px;
}

.main-circle-container .indicator-circle.bottom-left {
    top: 25%;
    left: -20px;
}

.main-circle-container .indicator-circle.bottom-right {
    top: 25%;
    right: -20px;
}

.feature-text-container {
    position: absolute;
    width: 280px;
    z-index: 3;
}

    .feature-text-container.top-left {
        top: 10px;
        transform: translateX(-100%);
        padding-right: 15px;
        text-align: right;
        margin-left: -35px;
    }

    .feature-text-container.top-right {
        top: -5px;
        margin-right: -35px;
        transform: translateX(100%);
        padding-left: 15px;
        text-align: left;
    }

    .feature-text-container.bottom-left {
        top: 125px;
        transform: translateX(-100%);
        padding-right: 15px;
        text-align: right;
        margin-left: -200px;
    }

    .feature-text-container.bottom-right {
        top: 125px;
        margin-right: -200px;
        transform: translateX(100%);
        padding-left: 15px;
        text-align: left;
    }

.feature-text-container.top-left h3,
.feature-text-container.bottom-left h3 {
    text-align: right;
}

.feature-text-container.top-left p,
.feature-text-container.bottom-left p {
    text-align: right;
}

.feature-text-container.top-right h3,
.feature-text-container.bottom-right h3 {
    text-align: left;
}

.feature-text-container.top-right p,
.feature-text-container.bottom-right p {
    text-align: left;
}

.feature-circle {
    background: transparent;
    padding: 0;
    width: 100%;
}

.feature-circle h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    margin-top: 0;
}

.feature-circle p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin: 0;
}

/* Responsive styles for introduction section */
@media (max-width: 1200px) {
    #introduction .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .main-circle-container {
        width: 400px;
        height: 400px;
    }
    
    .feature-text-container {
        width: 240px;
    }
    
    .feature-text-container.top-left,
    .feature-text-container.bottom-left {
        padding-right: 10px;
    }
    
    .feature-text-container.top-right,
    .feature-text-container.bottom-right {
        padding-left: 10px;
    }
    
    .indicator-circle {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }
 
}

@media (max-width: 991px) {
    #introduction .container {
        max-width: 100%;
        padding: 0 25px;
    }
    
    #introduction {
        padding-bottom: 100px;
    }

        #introduction::after {
            height: 65%;
            border-top-left-radius: 189px;
            border-top-right-radius: 189px;
        }
    
    .intro-main {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }
    
    .main-circle-container {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }
    
    .main-circle {
        border-width: 6px;
    }
    
    .indicator-circle {
        display: none;
    }
    
    .feature-text-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        transform: none !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 10px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        display: flex;
        align-items: center;
    }
    
    .feature-bullet {
        display: block !important;
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-right: 15px;
        margin-top: 3px;
        background-color: #20704D;
        border-radius: 50%;
    }
    
    .feature-text-container::before {
        display: none;
    }

    .feature-circle {
        width: calc(100% - 31px);
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        padding-right: 10px;
    }
    
    .feature-circle h3 {
        color: #000;
        text-align: left !important;
        margin-bottom: 2px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .feature-circle p {
        color: #555;
        font-size: 13px;
        text-align: left !important;
        font-style: italic;
        margin-top: 0;
    }
    
    .feature-text-container.top-left h3,
    .feature-text-container.bottom-left h3,
    .feature-text-container.top-left p,
    .feature-text-container.bottom-left p,
    .feature-text-container.top-right h3,
    .feature-text-container.bottom-right h3,
    .feature-text-container.top-right p,
    .feature-text-container.bottom-right p {
        text-align: left !important;
    }

}

@media (max-width: 767px) {
    #introduction {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
        padding-bottom: 80px;
        padding-top: 20px;
    }

        #introduction::after {
            height: 75%;
            width: 100%;
            border-top-left-radius: 189px;
            border-top-right-radius: 189px;
        }
    
    #introduction .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .intro-main {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .feature-text-container {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 0 1px 0 !important;
        padding: 12px 15px !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        position: relative !important;
        box-sizing: border-box;
        background-color: #20704D;
        border-radius: 0;
        display: flex;
        align-items: center;
    }
    
    .feature-text-container.top-left,
    .feature-text-container.top-right,
    .feature-text-container.bottom-left,
    .feature-text-container.bottom-right {
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .main-circle-container {
        width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .main-circle {
        border-width: 5px;
    }

    .feature-bullet {
        display: block !important;
        width: 35px;
        height: 35px;
        min-width: 10px;
        margin-right: 20px;
        margin-left: 10px;
        margin-top: 8px;
        background: #166534;
        border: 5px solid #7FBA00;
        border-radius: 50%;
    }
    
    .feature-circle {
        width: calc(100% - 20px);
        text-overflow: ellipsis;
        overflow: visible;
        white-space: normal;
        flex: 1;
    }
    
    .feature-circle h3 {
        font-size: 14px;
        margin-bottom: 1px;
        color: white;
        font-weight: 500;
        width: 100%;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .feature-circle p {
        font-size: 12px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.8);
        width: 100%;
        overflow-wrap: break-word;
        text-align: left;
        margin-top: 3px;
    }
  
    .cta-section {
        padding: 0 15px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    #introduction {
        padding-bottom: 60px;
        padding-top: 10px;
    }
    
    #introduction .container {
        padding: 0;
    }
    
    .main-circle-container {
        width: 180px;
        height: 180px;
    }
    
    .main-circle {
        border-width: 4px;
    }

    .feature-bullet {
        display: block !important;
        width: 32px;
        height: 32px;
        min-width: 8px;
        margin-right: 20px;
        margin-left: 10px;
        margin-top: 8px;
        background: #166534;
        border: 5px solid #7FBA00;
    }

    .feature-circle {
        width: calc(100% - 16px);
        padding-right: 10px;
    }
    
    .feature-circle h3 {
        font-size: 13px;
    }
    
    .feature-circle p {
        font-size: 11px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
        width: 90%;
    }
}

/*  Events Section Styles */

.bg-green {
    background: #20704D !important;
}

.event-title {
    font-size: 47px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.event-subtitle {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    width: 670px;
    margin: 0 auto;
    height: auto;
    max-width: 100%;
}

.countdown-container {
    gap: 24px;
    margin: 32px 0;
}

.countdown-item {
    text-align: center;
}

.countdown-box {
    background: #7CC000;
    width: 130px;
    height: 130px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.countdown-label {
    color: #F3F3F3;
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.btn-auction {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 36px;
    gap: 15px;
    width: 283px;
    height: 56px;
    background: #FFA900;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    flex: none;
    order: 1;
    color: white;
    text-align: center;
    flex-grow: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 27px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
}

.btn-auction:hover {
    background: #ff9500;
    color: white;
    text-decoration: none;
}

.event-card {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    position: relative;
    margin-bottom: 20px;
}

.event-card-img {
    position: relative;
    height: 480.86px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 107, 59, 0) 0%, rgba(26, 107, 59, 0.9) 70%);
    z-index: 1;
}

.event-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FFA800;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 19px;
    z-index: 2;
    font-family: 'Roboto', sans-serif;
}

.viewer-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    z-index: 2;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.viewer-count i {
    font-size: 16px;
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.event-card-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.host-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 42px;
    height: 42px;
    background: #3AC267;
    border-radius: 50%;
}

.host-name {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.social-icon {
    width: 57px;
    height: 57px;
    background: white;
    border-radius: 10px;
}

.schedule-box {
    background: #16A34A;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    font-size: 24.18px;
}


.calendar-icon {
    width: 43px;
    height: 43px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3C/svg%3E");
    background-size: contain;
    display: inline-block;
}

/* Responsive styles for Events section */
@media (max-width: 768px) {
    .event-title {
        font-size: 24px;
    }
    
    .event-subtitle {
        width: 100%;
        padding: 0 15px;
        height: auto;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 16px;
    }
    
    .countdown-label {
        font-size: 14px;
    }
    
    .event-card-img {
        height: 160px;
    }
    
    .btn-auction {
        width: 90%;
        max-width: 250px;
        padding: 10px 20px;
        height: auto;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .event-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .countdown-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .countdown-item {
        margin: 0 5px;
    }
    
    .countdown-container {
        margin: 20px 0;
    }
    
    .schedule-box {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/*  News Section Styles  */
  
.news-section {
    background: #20704D !important;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-bottom-left-radius: 251px;
    border-bottom-right-radius: 251px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.news-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 38.4px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.news-carousel-container {
    position: relative;
    padding: 0;
    margin: 0 auto;
}

.news-carousel {
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    display: block;
}

.carousel-item {
    padding: 0;
}

@media (max-width: 992px) {
    .carousel-item {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
    }
}

.card {
    background: #FFFFFF;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.btn-all-posts {
    display: inline-block;
    color: #FFFFFF !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    padding: 8px 24px;
    font-size: 36px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.btn-all-posts:hover {
    opacity: 0.8;
    color: #FFFFFF !important;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 0.7;
}

.carousel-nav-icon {
    font-size: 60px;
    line-height: 1;
    color: #FFFFFF;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .carousel-prev {
        left: -30px;
    }
    
    .carousel-next {
        right: -30px;
    }
    
    .carousel-nav-icon {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .carousel-nav-icon {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .carousel-nav-icon {
        font-size: 32px;
    }
}

.press-section {
    background: #EFECE3;
    padding: 60px 0;
}

    .press-section h2 {
        color: #525252;
        font-size: 48px;
        font-weight: 900;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 38.4px;
    }

.press-logos {
    max-width: 900px;
    margin: 0 auto;
}

.logo-wrapper {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.logo-wrapper img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.press-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.press-name span {
    display: block;
    text-align: center;
}

.press-quote {
    max-width: 800px;
    margin: 40px auto 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.quote-text {
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    color: #26263E;
}

.btn-view {
    display: inline-block;
    background: #7FBA00;
    border-radius: 4px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 24px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #7CB342;
    color: #FFFFFF;
    text-decoration: none;
}

.tv-badge {
    background: #7FBA00;
    color: #FFFFFF !important;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.tv-badge span {
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .news-section {
        border-bottom-left-radius: 150px;
        border-bottom-right-radius: 150px;
        padding-bottom: 80px;
    }
    
    .press-section h2 {
        font-size: 36px;
    }
    
    .quote-text {
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .news-section {
        border-radius: 20px;
        padding-bottom: 60px;
    }
    
    .news-section h2 {
        font-size: 30px;
    }
    
    .btn-all-posts {
        font-size: 24px;
    }
    
    .press-section h2 {
        font-size: 24px;
    }
    
    .quote-text {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .news-section {
        border-radius: 20px;
        padding-bottom: 50px;
    }
    
    .btn-all-posts {
        font-size: 20px;
    }
    
    .press-logo-item {
        margin-bottom: 20px;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 28px;
    }
}

.product-banner {
    position: relative;
    background-color: #166534;
    border-radius: 0 300px 300px 0;
    overflow: hidden;
    margin: 30px 0;
    padding: 0;
    max-width: 97%;
}

.product-banner .container {
    max-width: 1500px;
    padding: 0;
}

.product-banner-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
    height: 100%;
}

.product-banner-img {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: unset;
    max-height: none;
    border-radius: 0;
    display: flex;
}

.product-banner-img::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.product-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 0px 60px 0px;
}

.product-banner-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 60px 45px 120px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 100%;
    position: relative;
}

.product-banner-content .content-top {
    margin-bottom: 0;
    flex-grow: 1;
    width: 100%;
    padding-right: 70px;
}

    .product-banner-content .content-bottom {
        width: 100%;
        position: absolute;
        bottom: 50px;
        left: 45px;
    }

.product-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 30px;
}

.product-banner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 20px;
}

.product-banner-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    line-height: 1.5;
}

.product-banner-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.product-banner-btn {
    display: inline-block;
    background-color: #FFA900;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 14px 35px;
    border-radius: 15px;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.product-banner-btn:hover {
    background-color: #F09000;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .product-banner-title {
        font-size: 34px;
    }
    
    .product-banner-list li {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .product-banner {
        border-radius: 0;
        max-width: 100%;
        margin:  0;
    }
    
    .product-banner-inner {
        flex-direction: column;
        height: auto;
    }
    
    .product-banner-img,
    .product-banner-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-banner-img {
        min-height: 300px;
    }
    
    .product-banner-content {
        padding: 40px 30px 60px;
        height: auto;
        min-height: auto;
    }
    
    .product-banner-content .content-top {
        padding-right: 0;
    }
    
    .product-banner-content .content-bottom {
        position: static;
        margin-top: 30px;
    }
    
    .product-banner-btn {
        transform: translateY(0);
    }
    
    .product-banner-title {
        font-size: 30px;
    }

    .product-banner-img img {
        padding: 0px;
    }
}

@media (max-width: 767px) {
    .product-banner {
        border-radius: 0;
        max-width: 100%;
    }
    
    .product-banner-img {
        max-height: 250px;
    }
    
    .product-banner-content {
        padding: 25px 20px 40px;
        height: auto;
        min-height: auto;
    }
    
    .product-banner-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .product-banner-list li {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .product-banner-content .content-bottom {
        position: static;
        margin-top: 20px;
        padding-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-banner-btn {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    .product-banner-img img {
        padding: 0;
    }
}
.card-slide {
    position: relative;
    padding: 0 50px;
}

.js-card-slide .item {
    padding: 10px;
}

.js-card-slide .card-wrap {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

    .js-card-slide .card-wrap .card-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        padding: 15px;
        border-radius: 20px;
    }

.js-card-slide .card-content {
    padding: 15px;
}

.js-card-slide .card-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.js-card-slide .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.js-card-slide .card-title a {
    color: #166534;
    text-decoration: none;
}

.js-card-slide .card-title a:hover {
    text-decoration: underline;
}

.js-card-slide .card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-nav i {
    font-size: 20px;
}

.js-card-slide.owl-carousel .owl-stage {
    display: flex;
}

.js-card-slide.owl-carousel .owl-item {
    display: flex;
}

@media (max-width: 768px) {
    .card-slide {
        padding: 0 40px;
    }
    
    .js-card-slide .item {
        padding: 8px;
    }
    
    .js-card-slide .card-wrap .card-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .card-slide {
        padding: 0 30px;
    }
    
    .js-card-slide .item {
        padding: 5px;
    }
}
.section-title {
    color: #525252;
    font-size: 48px;
    line-height: 36px;
}
.wrap-2 {
    padding: 45px 40px;
}
@media (max-width: 767px) {
    .nav-wrap {
        padding: 20px 20px;
    }

    .product-banner {
        margin: 0;
    }
    .benefit-item {
        flex: 0 1 33.33%;
        flex-direction: column;
        text-align: center;
        padding: 0 5px;
        margin-bottom: 15px;
    }
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 8px;
    }
    .benefit-text h3 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
    }
    .benefit-text p {
        font-size: 12px;
        line-height: 1.3;
    }
    .section-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    .wrap-2 {
        padding: 0px;
    }
}

.mobile-event-cards {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.event-cards-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 15px;
    margin: 0 -15px;
    scrollbar-width: none; 
}

.event-cards-scroll::-webkit-scrollbar {
    display: none; 
}

.event-card-wrap {
    flex: 0 0 280px;
    max-width: 280px;
    padding: 0 10px;
}

.event-card-wrap .event-card {
    height: 100%;
    margin-bottom: 0;
}

.event-card-wrap .event-card-img {
    height: 380px;
    border-radius: 15px;
}

@media (max-width: 576px) {
    .event-card-wrap {
        flex: 0 0 250px;
        max-width: 250px;
    }
    
    .event-card-wrap .event-card-img {
        height: 320px;
    }
}

.event-card {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    position: relative;
    margin-bottom: 20px;
}

.event-card-img {
    position: relative;
    height: 480.86px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .main-circle-container {
        width: 450px;
        height: 450px;
    }

    .feature-text-container.top-left {
        top: 60px;
        left: 110px;
        width: 200px;
        transform: translateX(-100%);
    }

    .feature-text-container.top-right {
        top: 60px;
        right: 110px;
        width: 200px;
    }

    .feature-text-container.bottom-left {
        bottom: 160px;
        left: 90px;
        width: 200px;
        transform: translateX(-100%);
    }

    .feature-text-container.bottom-right {
        bottom: 160px;
        right: 90px;
        width: 200px;
    }

    .feature-circle h3 {
        font-size: 16px;
    }

    .feature-circle p {
        font-size: 13px;
    }

    .indicator-circle {
        width: 70px;
        height: 70px;
        border-width: 8px;
    }
}

@media (max-width: 991px) {
    .intro-main {
        min-height: 550px;
    }

    .main-circle-container {
        width: 340px;
        height: 340px   ;
    }
    
    .feature-text-container.top-left {
        top: 50px;
        left: 95px;
        width: 180px;
        transform: translateX(-100%);
    }
    
    .feature-text-container.top-right {
        top: 50px;
        right: 95px;
        width: 180px;
    }
    
    .feature-text-container.bottom-left {
        bottom: 130px;
        left: 80px;
        width: 180px;
        transform: translateX(-100%);
    }
    
    .feature-text-container.bottom-right {
        bottom: 130px;
        right: 80px;
        width: 180px;
    }
    
    .feature-circle h3 {
        font-size: 15px;
    }
    
    .feature-circle p {
        font-size: 12px;
    }
    
    .indicator-circle {
        width: 60px;
        height: 60px;
        border-width: 7px;
    }

    .main-circle-container .indicator-circle.top-left {
        top: 20%;
        left: -12px;
    }
    
    .main-circle-container .indicator-circle.top-right {
        top: 20%;
        right: -12px;
    }
    
    .main-circle-container .indicator-circle.bottom-left {
        bottom: 20%;
        left: -12px;
    }
    
    .main-circle-container .indicator-circle.bottom-right {
        bottom: 20%;
        right: -12px;
    }
}

.cta-section {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #FFA900;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 52px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    gap: 10px;
    line-height: 38.4px;
    letter-spacing: 0%;
    text-align: center;
}

.cta-button:hover {
    background-color: #F09000;
    color: white;
    text-decoration: none;
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
    line-height: 38.4px;
    letter-spacing: 0%;
    text-align: center;
    padding-bottom:40px;
}

.benefits-wrapper {
    background-color: #EFECE3;
    padding: 35px 0;
}

.benefits-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: center;
    width: 32%;
}

.benefit-icon {
    flex: 0 0 auto;
    width: 106px;
    height: 59px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.benefit-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.8);
    margin: 0;
}

@media (max-width: 767px) {
    .cta-section {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 18px;
        padding: 10px 24px;
    }

    .tagline {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        margin-top: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-button {
        border-radius: 6.61px;
        padding-top: 5.51px;
        padding-right: 11.02px;
        padding-bottom: 5.51px;
        padding-left: 11.02px;
        gap: 5.51px;
        font-family: Roboto;
        font-weight: 900;
        font-size: 15px;
        line-height: 21.16px;
        letter-spacing: 0%;
        text-align: center;
    }

    .tagline {
        font-size: 12px;    
        line-height: 1.4;
        padding: 5px 10px;
    }
    
    .benefit-item {
        flex: 0 1 33.33%;
        flex-direction: column;
        text-align: center;
        padding: 0 3px;
        margin-bottom: 10px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 5px;
    }
    
    .benefit-text h3 {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 1px;
    }
    
    .benefit-text p {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .benefits-wrapper {
        padding: 20px 0;
    }
    
    .benefits-section {
        align-items: flex-start;
    }
}

.feature-bullet {
    display: none;
}

.full-width {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .full-width-mobile {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    .section-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    .header-banner {
        padding: 30px 0;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .header-content {
        padding: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .button-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-img {
        margin-bottom: 20px;
    }
    
    .header-description ul li {
        font-size: 14px;
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .intro-main {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        align-items: center;
        width: 100%;
    }
    
    .main-circle-container {
        width: 300px;
        height: 300px;
        margin: 0 auto 30px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .feature-bullet {
        display: block !important;
        width: 40px;
        height: 40px;
        min-width: 24px;
        margin-right: 20px;
        margin-top: 5px;
        background-color: #20704D;
        border-radius: 50%;
        border: 5px solid #7FBA00;
    }
    
    .feature-text-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        transform: none !important;
        text-align: left !important;
        padding: 15px 20px !important;
        margin: 10px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .feature-text-container.top-left,
    .feature-text-container.top-right,
    .feature-text-container.bottom-left,
    .feature-text-container.bottom-right {
        position: relative !important;
        width: 100% !important;
        max-width: 500px !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 10px auto !important;
    }
    
    .feature-circle {
        width: calc(100% - 39px);
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }
    
    .feature-circle h3 {
        color: #FFFFFF;
        text-align: left !important;
        margin-bottom: 2px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .feature-circle p {
        color: #FFFFFF;
        font-size: 15px;
        text-align: left !important;
        font-style: italic;
        margin-top: 0;
    }
    
    .feature-text-container.top-left h3,
    .feature-text-container.bottom-left h3,
    .feature-text-container.top-left p,
    .feature-text-container.bottom-left p,
    .feature-text-container.top-right h3,
    .feature-text-container.bottom-right h3,
    .feature-text-container.top-right p,
    .feature-text-container.bottom-right p {
        text-align: left !important;
        color: #FFFFFF;
    }
    
    .indicator-circle {
        display: none;
    }
    
    #introduction .container {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .feature-circle h3 {
        font-size: 25px;
    }
    .feature-circle p {
        font-size: 18px;
    }
    #introduction::after {
        height: 70%;
    }
}

@media only screen and (min-width: 834px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .intro-main {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        align-items: center;
        width: 100%;
    }

    .main-circle-container {
        width: 400px;
        height: 400px;
        margin: 0 auto 0px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .feature-bullet {
        display: block !important;
        width: 50px;
        height: 50px;
        min-width: 28px;
        margin-right: 18px;
        margin-top: 6px;
        background-color: #20704D;
        border-radius: 50%;
        border: 5px solid #7FBA00;
    }

    .feature-text-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        transform: none !important;
        text-align: left !important;
        padding: 18px 24px !important;
        margin: 12px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }

        .feature-text-container.top-left,
        .feature-text-container.top-right,
        .feature-text-container.bottom-left,
        .feature-text-container.bottom-right {
            position: relative !important;
            width: 100% !important;
            max-width: 600px !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
            margin: 12px auto !important;
        }

    .feature-circle {
        width: calc(100% - 46px);
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }

        .feature-circle h3 {
            color: #FFFFFF;
            text-align: left !important;
            margin-bottom: 4px;
            font-size: 22px;
            font-weight: 600;
            line-height: 1.3;
        }

        .feature-circle p {
            color: #FFFFFF;
            font-size: 17px;
            text-align: left !important;
            font-style: italic;
            margin-top: 0;
        }

    .feature-text-container.top-left h3,
    .feature-text-container.bottom-left h3,
    .feature-text-container.top-left p,
    .feature-text-container.bottom-left p,
    .feature-text-container.top-right h3,
    .feature-text-container.bottom-right h3,
    .feature-text-container.top-right p,
    .feature-text-container.bottom-right p {
        text-align: left !important;
        color: #FFFFFF;
    }

    .indicator-circle {
        display: none;
    }

    #introduction .container {
        max-width: 90%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-circle h3 {
        font-size: 25px;
    }

    .feature-circle p {
        font-size: 18px;
    }

    #introduction::after {
        height: 70%;
    }
}

/* Articles banner styles */
.banner-section {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.banner-title {
    font-weight: 900;
    font-size: 47px;
    line-height: 120%;
    text-align: center;
    color: #20704D;
    margin-bottom: 24px;
}

.banner-description {
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
    text-align: center;
    color: #393939;
    margin-bottom: 32px;
}

.banner-description p {
    margin-bottom: 8px;
}

.btn-product {
    display: inline-block;
    background: #FFA900;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
}

.btn-product:hover {
    background: #FFA900;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 169, 0, 0.2);
}

/* Responsive styles for banner section */
@media (max-width: 1200px) {
   
    .banner-title {
        font-size: 42px;
    }
    
    .banner-description {
        font-size: 19px;
    }
}

@media (max-width: 992px) {
    
    .banner-title {
        font-size: 38px;
    }
    
    .banner-description {
        font-size: 18px;
    }
    
    .btn-product {
        font-size: 18px;
        padding: 14px 36px;
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 325px;
    }
    
    .banner-content {
        padding: 60px 15px;
    }
    
    .banner-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .banner-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .btn-product {
        font-size: 16px;
        padding: 12px 30px;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .banner-section {
        min-height: 300px;
    }
    
    .banner-content {
        padding: 40px 10px;
    }
    
    .banner-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .banner-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-description p {
        margin-bottom: 6px;
    }
    
    .btn-product {
        font-size: 14px;
        padding: 10px 24px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 250px;
    }

    .banner-title {
        font-size: 22px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #20704D;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background-color: #FFA900;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .social-links {
        gap: 20px;
        margin-top: 15px;
    }
    
    .social-icon-footer {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .social-links {
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
    }
    
    .social-icon-footer {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 12px;
    }
    
    .social-icon-footer {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
.footer-wrap .intro h1 {
    color: #20704D;
}
.footer-wrap .footer-title {
    font-family: Roboto;
    font-weight: 700;
    color: #525252;
    font-size: 20px;
}
.toast-success {
    background-color: #51A351 !important;
}

.toast-error {
    background-color: #BD362F !important;
}

.toast-info {
    background-color: #2F96B4 !important;
}

.toast-warning {
    background-color: #F89406 !important;
}

#toast-container > div {
    opacity: 1 !important;
    border-radius: 3px !important;
    padding: 15px 15px 15px 50px !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.1) !important;
}

.toast-close-button {
    color: #fff !important;
    opacity: 0.8 !important;
}

.toast-message {
    color: #fff !important;
    font-size: 14px !important;
}

#toast-container > .toast:before {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 24px;
    line-height: 18px;
    color: #fff;
}

#toast-container > .toast-success:before {
    content: "\f058";
}

#toast-container > .toast-error:before {
    content: "\f057";
}

#toast-container > .toast-info:before {
    content: "\f05a";
}

#toast-container > .toast-warning:before {
    content: "\f071";
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    left: auto;
    right: 25px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #3b965f;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .back-to-top:hover {
        background-color: #2e7a4b;
    }

.ui-autocomplete {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.ui-menu-item {
    border-radius: 6px;
    margin: 2px 0;
}

.ui-menu-item-wrapper {
    padding: 8px !important;
    display: flex !important;
    align-items: center;
    transition: all 0.2s ease;
}

    .ui-menu-item-wrapper.ui-state-active {
        border: none !important;
        background: #f0f9f4 !important;
        margin: 0 !important;
        color: #3b965f !important;
    }

.autocomplete-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.autocomplete-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
}

.autocomplete-content {
    flex: 1;
}

.autocomplete-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    font-size: 14px;
}

.autocomplete-price {
    color: #3b965f;
    font-weight: 600;
    font-size: 13px;
}

.ui-helper-hidden-accessible {
    display: none;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
.footer-col {
    flex: 1 1 18%;
    min-width: 200px;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .footer-col {
        flex: 1 1 45%;
        min-width: 160px;
    }
}
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-col {
        min-width: 100%;
        flex: 1 1 100%;
    }
}