@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    /* COLORS */
    --text-green-1: #0B8E39;
    --text-green-2: #076F2C;
    --text-green-3: #054120;
    --text-light-green-1: #B7DEC4;
    --text-light-green-2: #56B881;
    --text-gray-1: #2F3A33;
    --text-gray-2: #6B7280;
    --demo-bg: #EEF3F0;

    --font-poppins: 'Poppins', sans-serif;
}

/* COMPONENTS */

/* .image-wrapper {
    position: relative;
    display: inline-block;
} */

.debug-area {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.4);
    border: 2px solid red;
    pointer-events: none;
}

.glass--card {
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);

    padding: 15px;
    color: #fff;
}

.outline--btn {
    background: transparent;
    color: var(--color-primary-blue);
    border: 2px solid var(--color-primary-blue);
    padding: 8px 25px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 600;
}

.white--bg-btn {
    background: #fff;
    color: var(--text-green-3);
    border: none;
    padding: 9px 15px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.white--bg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.yt-icon-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yt-icon-link:hover {
    transform: translateY(-3px);
}

.glass--btn {
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);

    padding: 9px 15px;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.glass--btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.glass--widget {
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);

    padding: 21px 18px;
    color: #fff;
    width: 413px;
    position: absolute;
    animation: floatWidget 4s ease-in-out infinite;
}

.widget-1 { animation-delay: 0s; }
.widget-2 { animation-delay: 0.5s; }
.widget-3 { animation-delay: 1s; }
.widget-4 { animation-delay: 1.5s; }
.widget-5 { animation-delay: 2s; }
.widget-6 { animation-delay: 2.5s; }

@keyframes floatWidget {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.w-65 {
    width: 65% !important;
}


/* PAGE STYLE */

body {
    font-family: var(--font-poppins);
}

/* 1. HERO SECTION */

.hero-section {
    background-image: url(../landing-assests/images/hero-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: 95%; */

}

.hero-heading {
    font-size: 62px;
}

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

.hero-toolkit {
    width: 200px;
}

.logo {
    width: 200px;
}

.nav-logo {
    height: 80px;
    width: auto;
}

.nav-company-logo {
    height: 50px;
    width: auto;
}

.glass--card p {
    margin: 0;
}

.glow {
    text-shadow: 1px 1px 12px var(--text-light-green-2);
}

/* HOW IT WORKS CARDS */

.how-section .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.how-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* 2. HOW IT WORKS SECTION */

.how-tag {
    color: var(--text-green-1);
    font-size: 21px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 10px;
}

.how-header h2 {
    font-size: 60px;
    color: var(--text-gray-1);
    margin-bottom: 20px;
}

.card-heading {
    color: var(--text-gray-1);
    margin: 3px;
}

.card-para {
    color: var(--text-gray-2);
}

.card-number {
    margin: 0;
    font-size: 27px;
    color: var(--text-light-green-2);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        background-position: 95%;
    }
}

/* 3. KEY FEATURE SECTION */

.key-section {
    background-image: linear-gradient(rgba(2, 20, 10, 0.88), rgba(4, 40, 18, 0.88)), url(../landing-assests/images/key-feature-background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.key-header h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.key-display {
    position: relative;
    height: 750px;
}

.key-center-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.key-center-image img {
    width: 275px;
}

.glass--widget p {
    margin: 0;
}

.widget-1 {
    left: 280px;
    top: 0px;
}

.widget-2 {
    left: 110px;
    top: 230px;
}

.widget-3 {
    left: 70px;
    top: 500px;
}

.widget-4 {
    right: 70px;
    top: 70px;
}

.widget-5 {
    right: 90px;
    top: 300px;
}

.widget-6 {
    right: 250px;
    top: 550px;
}

@media(max-width: 1200px) {
    .key-display {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .glass--widget {
        position: static;
        width: 100%;
        max-width: 500px;
    }
}

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

.slide-down {
    animation: slideDown 0.5s ease forwards;
}

/* 4. DEMO SECTION */

.demo-section {
    background-image: linear-gradient(135deg, #ffffff, #E8F5EC);
}

.demo-tag {
    color: var(--text-green-1);
    font-size: 21px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 10px;
}

.demo-header h2 {
    font-size: 60px;
    color: var(--text-gray-1);
    margin-bottom: 20px;
}

.highlight {
    color: var(--text-green-2);
    font-style: italic;
}

.demo-screen-details {
    background-color: var(--demo-bg);
    border-radius: 12px;
}

.demo-card {
    border: 1px solid var(--text-green-1);
    border-radius: 12px;
    padding: 12px;
}

.demo-card-number {
    font-size: 25px;
    color: var(--text-green-3);
}


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


.image-container {
    position: relative;
    width: 250px;
}


.image-container img {
    width: 100%;
    display: block;
}


#hotspots {
    position: absolute;
    inset: 0;
}


.hotspot {
    position: absolute;
    cursor: pointer;
    border-radius: 5px;
    background: rgba(0, 255, 21, 0.15);
    border: 2px solid rgba(60, 255, 0, 0.4);
    animation: hotspotPulse 2s ease-in-out infinite;
}

.hotspot:hover {
    background: rgba(0, 255, 21, 0.35);
    animation: none;
}

@keyframes hotspotPulse {
    0%   { background: rgba(0, 255, 21, 0.10); border-color: rgba(60, 255, 0, 0.3); box-shadow: 0 0 0 0 rgba(0, 255, 21, 0.4); }
    50%  { background: rgba(0, 255, 21, 0.25); border-color: rgba(60, 255, 0, 0.7); box-shadow: 0 0 8px 4px rgba(0, 255, 21, 0.2); }
    100% { background: rgba(0, 255, 21, 0.10); border-color: rgba(60, 255, 0, 0.3); box-shadow: 0 0 0 0 rgba(0, 255, 21, 0.4); }
}


/* 5. FAQ SECTION */

.faq-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../landing-assests/images/faq-background.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.faq-tag {
    color: var(--text-green-1);
    font-size: 21px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 60px;
    color: var(--text-gray-1);
    margin-bottom: 20px;
}

.faq-header p {
    /* max-width:750px; */
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.faq-item {
    /* border-bottom:1px solid #d8e2d8; */
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    color: #2f7a44;
    font-weight: 600;
    text-align: left;
}

.icon {
    font-size: 26px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    color: #555;
    line-height: 1.7;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .icon {
    transform: rotate(90deg);
}


@media(max-width:768px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-header h2,
    .how-header h2,
    .demo-header h2,
    .key-header h2,
    .hero-heading {
        font-size: 36px;
    }

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

    .logo {
        width: 150px;
    }

}


/* BACK TO TOP BUTTON */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-green-1);
    color: #fff;
    border: none;
    outline: 2px dashed rgba(255, 255, 255, 0.7);
    outline-offset: 5px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: floatBackToTop 2.5s ease-in-out infinite;
}

@keyframes floatBackToTop {
    0%   { transform: translateY(0px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
    50%  { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.25); }
    100% { transform: translateY(0px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* 6. FOOTER SECTION */

footer .list-unstyled li a::before {
    content: '›';
    color: var(--text-light-green-2);
    font-weight: 700;
    margin-right: 7px;
}

footer .list-unstyled li a {
    display: inline-block;
    transition: transform 0.2s ease;
}

footer .list-unstyled li a:hover {
    transform: translateY(-3px);
}

footer {
    background-image: url(../landing-assests/images/footer-img.png);
}