/* ===============================
   GLOW VEDA ABOUT US SECTION
================================= */

.section1 {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    background: linear-gradient(135deg,#fdfcf7,#f3f9f0);
}

    .section1::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(110,173,79,.18), transparent 70%);
        top: -200px;
        left: -150px;
        border-radius: 50%;
        animation: section1Float 8s ease-in-out infinite;
    }

    .section1::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212,175,55,.12), transparent 70%);
        right: -100px;
        bottom: -150px;
        border-radius: 50%;
        animation: section1Float 10s ease-in-out infinite;
    }

.section1-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.section1-content {
    flex: 1;
    animation: section1Left 1.2s ease;
}

.section1-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(52,114,52,.1);
    color: #2d6a2d;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section1-title {
    font-size: 54px;
    line-height: 1.15;
    color: #183118;
    margin-bottom: 25px;
    font-weight: 700;
}

    .section1-title span {
        color: #c89d3d;
    }

.section1-description {
    font-size: 17px;
    line-height: 1.9;
    color: #5c5c5c;
    margin-bottom: 20px;
}

.section1-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 35px 0;
}

.section1-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .section1-feature:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }

    .section1-feature i {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,#2f7d32,#66bb6a);
        color: #fff;
        border-radius: 50%;
        font-size: 20px;
    }

    .section1-feature span {
        font-weight: 600;
        color: #2c2c2c;
    }

.section1-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    background: linear-gradient(135deg,#b8891d,#e0c15a);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(184,137,29,.25);
    transition: .4s;
}

    .section1-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(184,137,29,.35);
    }

.section1-image {
    flex: 1;
    text-align: center;
    animation: section1Right 1.2s ease;
}

    .section1-image video {
        max-width: 100%;
        width: 600px;
        border-radius: 30px;
        filter: drop-shadow(0 25px 40px rgba(0,0,0,.18));
        animation: section1Pulse 4s infinite ease-in-out;
    }

/* Animations */

@keyframes section1Left {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes section1Right {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes section1Pulse {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes section1Float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .section1-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .section1-title {
        font-size: 42px;
    }

    .section1-features {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .section1 {
        padding: 70px 15px;
    }

    .section1-title {
        font-size: 32px;
    }

    .section1-description {
        font-size: 15px;
    }

    .section1-btn {
        width: 100%;
        text-align: center;
    }
}

/*===================================
   SECTION 2 - WHY CHOOSE GLOW VEDA
===================================*/

.section2 {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg,#f7fbf4,#ffffff);
    overflow: hidden;
}

    .section2::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(80,170,80,.12), transparent 70%);
        top: -180px;
        left: -150px;
        animation: section2Float 8s ease-in-out infinite;
    }

    .section2::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212,175,55,.15), transparent 70%);
        right: -150px;
        bottom: -150px;
        animation: section2Float 10s ease-in-out infinite;
    }

.section2-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section2-heading {
    text-align: center;
    max-width: 800px;
    margin: auto auto 60px;
}

.section2-subtitle {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(57,136,57,.1);
    color: #2c7c2c;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section2-title {
    font-size: 50px;
    color: #1f3d1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

    .section2-title span {
        color: #c89d3d;
    }

.section2-text {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

.section2-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.section2-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .5s;
    position: relative;
    overflow: hidden;
}

    .section2-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.6), transparent);
        transition: .8s;
    }

    .section2-card:hover::before {
        left: 100%;
    }

    .section2-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }

.section2-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#2f7d32,#78c66d);
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(47,125,50,.25);
}

.section2-card h3 {
    font-size: 24px;
    color: #183118;
    margin-bottom: 15px;
}

.section2-card p {
    color: #666;
    line-height: 1.8;
}

@keyframes section2Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .section2-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section2-title {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .section2 {
        padding: 70px 15px;
    }

    .section2-grid {
        grid-template-columns: 1fr;
    }

    .section2-title {
        font-size: 30px;
    }

    .section2-card {
        padding: 30px 20px;
    }
}
/*=================================
 SECTION 3 - WELLNESS JOURNEY
=================================*/

.section3 {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg,#0f2414,#183b22);
    overflow: hidden;
}

    .section3::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,215,0,.08), transparent 70%);
        top: -250px;
        left: -250px;
        animation: section3Float 10s infinite ease-in-out;
    }

    .section3::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,255,120,.08), transparent 70%);
        right: -150px;
        bottom: -150px;
        animation: section3Float 8s infinite ease-in-out;
    }

.section3-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section3-heading {
    text-align: center;
    margin-bottom: 90px;
}

.section3-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.section3-title {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
}

    .section3-title span {
        color: #d4af37;
    }

.section3-description {
    color: rgba(255,255,255,.8);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.section3-timeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    align-items: center;
}

.section3-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    transition: .5s;
}

    .section3-step:hover {
        transform: translateY(-15px);
        background: rgba(255,255,255,.08);
    }

.section3-circle {
    width: 90px;
    height: 90px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,#d4af37,#f6d365);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #183b22;
    animation: section3Pulse 3s infinite;
}

.section3-step h3 {
    color: #fff;
    margin-bottom: 15px;
}

.section3-step p {
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

.section3-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg,#d4af37,#f6d365);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #183b22;
    position: relative;
    animation: section3Rotate 12s linear infinite;
}
    .section3-logo-circle img {
        width: 150px;
    }

    .section3-logo-circle::before {
        content: '';
        position: absolute;
        inset: -15px;
        border: 2px dashed rgba(255,255,255,.4);
        border-radius: 50%;
    }

@keyframes section3Pulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes section3Rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes section3Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }
}

/* Responsive */

@media(max-width:1200px) {

    .section3-timeline {
        grid-template-columns: repeat(2,1fr);
    }

    .section3-center {
        grid-column: span 2;
        margin: 20px 0;
    }
}

@media(max-width:768px) {

    .section3-title {
        font-size: 36px;
    }

    .section3-timeline {
        grid-template-columns: 1fr;
    }

    .section3-center {
        grid-column: auto;
    }

    .section3-logo-circle {
        width: 140px;
        height: 140px;
        font-size: 55px;
    }
}
/*==================================
 SECTION 4 PREMIUM WELLNESS DESIGN
===================================*/

.section4 {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: linear-gradient(135deg,#f4f8f2,#ffffff,#eef8ef);
}

    .section4::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(76,175,80,.12), transparent 70%);
        top: -200px;
        left: -200px;
        animation: section4FloatBg 10s infinite ease-in-out;
    }

    .section4::after {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212,175,55,.15), transparent 70%);
        right: -150px;
        bottom: -150px;
        animation: section4FloatBg 8s infinite ease-in-out;
    }

.section4-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/*=====================
 IMAGES SIDE
======================*/

.section4-products {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section4-product-card {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .5s;
    position: relative;
}

    .section4-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.5), transparent);
        transition: .8s;
    }

    .section4-product-card:hover::before {
        left: 100%;
    }

    .section4-product-card:hover {
        transform: translateY(-10px);
    }

    .section4-product-card video {
        width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
    }

.section4-card1 {
    width: 320px;
    animation: section4Float1 5s ease-in-out infinite;
}

.section4-card2 {
    width: 320px;
    animation: section4Float2 6s ease-in-out infinite;
}

/*=====================
 CONTENT SIDE
======================*/

.section4-content {
    flex: 1;
}

.section4-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 20px;
}

.section4-title {
    font-size: 55px;
    line-height: 1.1;
    color: #1b3a21;
    margin-bottom: 20px;
    font-weight: 700;
}

    .section4-title span {
        color: #c89d3d;
    }

.section4-text {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

.section4-list {
    display: grid;
    gap: 15px;
    margin-bottom: 35px;
}

.section4-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    border-left: 4px solid #c89d3d;
    transition: .4s;
}

    .section4-item:hover {
        transform: translateX(10px);
    }

.section4-btn {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient( 135deg, #c89d3d, #f1d98b);
    color: #111;
    font-weight: 700;
    transition: .4s;
    box-shadow: 0 15px 30px rgba(200,157,61,.25);
}

    .section4-btn:hover {
        transform: translateY(-5px);
    }

/*=====================
 ANIMATIONS
======================*/

@keyframes section4Float1 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes section4Float2 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes section4FloatBg {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }
}

/*=====================
 RESPONSIVE
======================*/

@media(max-width:991px) {

    .section4-container {
        flex-direction: column;
        text-align: center;
    }

    .section4-products {
        flex-direction: column;
        gap: 25px;
    }

    .section4-title {
        font-size: 42px;
    }

    .section4-card1,
    .section4-card2 {
        width: 100%;
        max-width: 350px;
    }

    .section4-item:hover {
        transform: none;
    }
}

@media(max-width:576px) {

    .section4 {
        padding: 70px 15px;
    }

    .section4-title {
        font-size: 32px;
    }

    .section4-text {
        font-size: 15px;
    }

    .section4-btn {
        width: 100%;
        text-align: center;
    }

    .section4-card1,
    .section4-card2 {
        max-width: 100%;
    }
}
/*=========================
 NEWSLETTER PREMIUM CARD
=========================*/

.customfooter-newsletter-box {
    position: relative;
    padding: 35px;
    border-radius: 30px;
    background: linear-gradient( 135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .5s;
}

    .customfooter-newsletter-box::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(212,175,55,.18), transparent 70%);
        top: -80px;
        right: -80px;
        animation: customfooterNewsletterFloat 6s infinite ease-in-out;
    }

    .customfooter-newsletter-box:hover {
        transform: translateY(-8px);
        border-color: rgba(212,175,55,.35);
    }

.customfooter-newsletter-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #d4af37, #f6d365);
    color: #111;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(212,175,55,.25);
}

.customfooter-newsletter h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.customfooter-newsletter p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 25px;
}

.customfooter-newsletter-form {
    position: relative;
}

    .customfooter-newsletter-form input {
        width: 100%;
        height: 60px;
        border: none;
        outline: none;
        border-radius: 60px;
        padding: 0 170px 0 25px;
        background: rgba(255,255,255,.08);
        color: #fff;
        font-size: 15px;
    }

        .customfooter-newsletter-form input::placeholder {
            color: rgba(255,255,255,.55);
        }

    .customfooter-newsletter-form button {
       /* position: absolute;*/
        top: 6px;
        right: 6px;
        height: 48px;
        padding: 0 28px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 700;
        background: linear-gradient( 135deg, #d4af37, #f6d365);
        color: #111;
        transition: .4s;
    }

        .customfooter-newsletter-form button:hover {
            transform: scale(1.05);
        }

@keyframes customfooterNewsletterFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

/* Mobile */

@media(max-width:576px) {

    .customfooter-newsletter-box {
        padding: 25px;
    }

    .customfooter-newsletter-form input {
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .customfooter-newsletter-form button {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        height: 55px;
    }
}
/*==================================
 SECTION 5 PREMIUM ABOUT COMPANY
===================================*/

.section5 {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background: #ffffff;
}

    .section5::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
        top: -350px;
        left: -250px;
        animation: section5Float 10s ease-in-out infinite;
    }

    .section5::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,215,0,.15), transparent 70%);
        bottom: -250px;
        right: -250px;
        animation: section5Float 8s ease-in-out infinite;
    }

.section5-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/*====================
 LEFT CONTENT
=====================*/

.section5-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.section5-title {
    font-size: 68px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0,0,0,.15);
}

    .section5-title span {
        display: block;
        color: #fff7d1;
    }

.section5-text {
    color: rgba(255,255,255,.90);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
}

/*====================
 STATS
=====================*/

.section5-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section5-stat {
    min-width: 160px;
    padding: 25px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    transition: .4s;
}

    .section5-stat:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.18);
    }

    .section5-stat h3 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
    }

    .section5-stat p {
        margin: 0;
        color: rgba(255,255,255,.85);
    }

/*====================
 DIVIDER
=====================*/

.section5-divider {
    width: 2px;
    height: 500px;
    background: linear-gradient( to bottom, transparent, rgba(255,255,255,.8), transparent);
}

/*====================
 IMAGE SIDE
=====================*/

.section5-right {
    display: flex;
    justify-content: center;
}

.section5-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    animation: section5ImageFloat 6s ease-in-out infinite;
}

    .section5-image-box img {
        width: 100%;
        max-width: 550px;
        display: block;
        transition: 1s;
    }

    .section5-image-box:hover img {
        transform: scale(1.08);
    }

.section5-overlay-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.15);
}

    .section5-overlay-card h4 {
        color: #fff;
        margin: 0 0 10px;
        font-size: 24px;
    }

    .section5-overlay-card p {
        color: rgba(255,255,255,.90);
        margin: 0;
        line-height: 1.7;
    }

/*====================
 ANIMATIONS
=====================*/

@keyframes section5Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }
}

@keyframes section5ImageFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/*====================
 RESPONSIVE
=====================*/

@media(max-width:991px) {

    .section5-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section5-divider {
        display: none;
    }

    .section5-title {
        font-size: 48px;
    }

    .section5-text {
        max-width: 100%;
    }
}

@media(max-width:768px) {

    .section5 {
        padding: 80px 15px;
    }

    .section5-title {
        font-size: 36px;
    }

    .section5-text {
        font-size: 16px;
    }

    .section5-stats {
        flex-direction: column;
    }

    .section5-stat {
        width: 100%;
    }

    .section5-overlay-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 18px;
    }

        .section5-overlay-card h4 {
            font-size: 20px;
        }
}
.section5::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(31,107,44,.08), transparent 70%);
    top: -350px;
    left: -250px;
    animation: section5Float 10s ease-in-out infinite;
}

.section5::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(212,175,55,.10), transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: section5Float 8s ease-in-out infinite;
}
.section5-title {
    font-size: 68px;
    line-height: 1.05;
    color: #1F2D1F;
    margin-bottom: 25px;
    font-weight: 700;
}

    .section5-title span {
        display: block;
        color: #D4AF37;
    }
.section5-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8f0;
    color: #1F6B2C;
    border: 1px solid rgba(31,107,44,.15);
}
.section5-text {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
}
.section5-stat {
    min-width: 160px;
    padding: 25px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #eef0ee;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    transition: .4s;
}

    .section5-stat:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 25px 45px rgba(0,0,0,.10);
    }

    .section5-stat h3 {
        color: #1F6B2C;
    }

    .section5-stat p {
        color: #666;
    }
/*==================================
 SECTION 6 PREMIUM SHOWCASE
===================================*/

.section6 {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background: #efefef;
}

    .section6::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(31,107,44,.08), transparent 70%);
        top: -250px;
        left: -250px;
    }

    .section6::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(212,175,55,.10), transparent 70%);
        bottom: -250px;
        right: -250px;
    }

.section6-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section6-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section6-tag {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: #eef8f0;
    color: #1F6B2C;
    font-weight: 600;
}

.section6-title {
    font-size: 58px;
    margin-top: 20px;
    color: #1c2d1f;
    line-height: 1.1;
}

    .section6-title span {
        color: #D4AF37;
    }

.section6-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    align-items: center;
    gap: 40px;
}

.section6-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #edf0ed;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    transition: .4s;
}

    .section6-card:hover {
        transform: translateY(-12px);
    }

.section6-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.section6-card h3 {
    margin-bottom: 15px;
    color: #1F6B2C;
}

.section6-card p {
    color: #666;
    line-height: 1.8;
}

.section6-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section6-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px dashed #D4AF37;
    border-radius: 50%;
    animation: section6Rotate 30s linear infinite;
}

.section6-product {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 500px;
    overflow: hidden;
    border-radius: 35px;
/*    box-shadow: 0 25px 60px rgba(0,0,0,.15);
*/    animation: section6Float 5s ease-in-out infinite;
}

    .section6-product img {
        width: 100%;
        height: 100%;
/*        object-fit: cover;
*/    }

.section6-bottom {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.section6-feature {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .section6-feature strong {
        display: block;
        font-size: 34px;
        color: #1F6B2C;
    }

    .section6-feature span {
        color: #666;
    }

@keyframes section6Rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes section6Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media(max-width:991px) {

    .section6-wrapper {
        grid-template-columns: 1fr;
    }

    .section6-title {
        font-size: 42px;
    }

    .section6-bottom {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .section6 {
        padding: 80px 15px;
    }

    .section6-title {
        font-size: 32px;
    }

    .section6-bottom {
        grid-template-columns: 1fr;
    }

    .section6-circle {
        width: 280px;
        height: 280px;
    }

    .section6-product {
        width: 220px;
        height: 400px;
    }
}
/*==================================
 SECTION 7 VISION & MISSION
===================================*/

.section7 {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background: #ffffff;
}

    .section7::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(31,107,44,.06), transparent 70%);
        top: -250px;
        left: -250px;
    }

    .section7::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(212,175,55,.08), transparent 70%);
        right: -200px;
        bottom: -200px;
    }

.section7-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section7-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section7-tag {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: #eef8f0;
    color: #1F6B2C;
    font-weight: 600;
    letter-spacing: 1px;
}

.section7-title {
    font-size: 58px;
    color: #1F6B2C;
    margin: 20px 0;
}

.section7-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

/* Cards Area */

.section7-wrapper {
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    align-items: center;
    gap: 40px;
}

.section7-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 35px;
    background: #fff;
    border: 1px solid #edf0ed;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    transition: .5s;
}

    .section7-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }

.section7-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient( 135deg, #1F6B2C, #4CAF50);
}

.section7-card h3 {
    font-size: 32px;
    color: #1F6B2C;
    margin-bottom: 20px;
}

.section7-card p {
    color: #666;
    line-height: 1.9;
}

/* Center */

.section7-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.section7-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px dashed #D4AF37;
    border-radius: 50%;
    animation: section7Rotate 20s linear infinite;
}

.section7-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #1F6B2C, #D4AF37);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* Animations */

.section7-vision {
    animation: section7FloatLeft 5s ease-in-out infinite;
}

.section7-mission {
    animation: section7FloatRight 5s ease-in-out infinite;
}

@keyframes section7Rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes section7FloatLeft {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes section7FloatRight {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .section7-wrapper {
        grid-template-columns: 1fr;
    }

    .section7-center {
        order: -1;
        height: 220px;
    }

    .section7-title {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .section7 {
        padding: 80px 15px;
    }

    .section7-title {
        font-size: 32px;
    }

    .section7-card {
        padding: 35px 25px;
    }

        .section7-card h3 {
            font-size: 26px;
        }

    .section7-circle {
        width: 140px;
        height: 140px;
    }

    .section7-logo {
        width: 90px;
        height: 90px;
        font-size: 26px;
    }
}
/*=========================
 PREMIUM BREADCRUMB
=========================*/

.custom-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient( 135deg, #1F6B2C 0%, #3B8C3E 50%, #D4AF37 100%);
}

    .custom-breadcrumb::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,255,255,.12), transparent 70%);
        top: -350px;
        left: -250px;
    }

    .custom-breadcrumb::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,255,255,.08), transparent 70%);
        right: -250px;
        bottom: -250px;
    }

.custom-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.custom-breadcrumb-subtitle {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
}

.custom-breadcrumb-title {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeUp 1.2s ease;
}

.custom-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: fadeUp 1.4s ease;
}

    .custom-breadcrumb-nav li {
        color: #fff;
        font-size: 17px;
    }

        .custom-breadcrumb-nav li a {
            color: #fff;
            text-decoration: none;
            transition: .3s;
        }

            .custom-breadcrumb-nav li a:hover {
                color: #fff7d1;
            }

    .custom-breadcrumb-nav .active {
        color: #fff7d1;
        font-weight: 600;
    }

/* Floating Shapes */

.custom-breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.shape1 {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.10);
    top: 20%;
    left: 10%;
    animation: floatShape 6s ease-in-out infinite;
}

.shape2 {
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.08);
    right: 8%;
    bottom: 15%;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px) {

    .custom-breadcrumb {
        padding: 100px 20px;
    }

    .custom-breadcrumb-title {
        font-size: 48px;
    }
}

@media(max-width:576px) {

    .custom-breadcrumb {
        padding: 80px 15px;
    }

    .custom-breadcrumb-title {
        font-size: 34px;
    }

    .custom-breadcrumb-subtitle {
        font-size: 13px;
    }

    .custom-breadcrumb-nav li {
        font-size: 14px;
    }

    .shape1 {
        width: 80px;
        height: 80px;
    }

    .shape2 {
        width: 120px;
        height: 120px;
    }
}
/*=========================
 SECTION 9
=========================*/

.section9 {
    padding: 120px 20px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

    .section9::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(31,107,44,.05);
        top: -250px;
        left: -250px;
        animation: section9Float 8s infinite ease-in-out;
    }

    .section9::after {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(212,175,55,.08);
        right: -220px;
        bottom: -220px;
        animation: section9Float 10s infinite ease-in-out;
    }

.section9-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section9-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section9-tag {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: #f6faf7;
    color: #1F6B2C;
    font-weight: 700;
    letter-spacing: 1px;
}

.section9-heading h2 {
    font-size: 56px;
    color: #111;
    margin: 20px 0;
    font-weight: 800;
}

    .section9-heading h2 span {
        color: #1F6B2C;
    }

.section9-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.section9-products {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.section9-card {
    position: relative;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    transition: .5s;
}

    .section9-card:hover {
        transform: translateY(-15px);
    }

.section9-card-dark {
    background:#fff;
}

.section9-image {
    text-align: center;
    padding: 50px 30px 20px;
}

    .section9-image img {
        width: 100%;
        max-width: 280px;
        transition: .6s;
        animation: section9Product 5s infinite ease-in-out;
    }

.section9-card:hover .section9-image img {
    transform: scale(1.08);
}

.section9-content {
    padding: 35px;
    text-align: center;
}

.section9-label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: #D4AF37;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section9-content h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1F6B2C;
}

.section9-card-dark h3 {
    color: #1F6B2C;
}

.section9-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.section9-card-dark p {
    color: #666;
    line-height: 1.8;
}

.section9-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient( 135deg, #1F6B2C, #D4AF37);
    transition: .4s;
}

    .section9-content a:hover {
        transform: translateY(-4px);
    }

@keyframes section9Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

@keyframes section9Product {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px) {

    .section9-products {
        grid-template-columns: 1fr;
    }

    .section9-heading h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .section9 {
        padding: 80px 15px;
    }

    .section9-heading h2 {
        font-size: 30px;
    }

    .section9-content {
        padding: 25px;
    }

        .section9-content h3 {
            font-size: 28px;
        }
}
