* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

p {
    color: var(--theme-color2);
}

:root {
    --theme-color1: #9333ea;
    --theme-color2: #374151;
}

/* Navbar */

.header .navbar {
    background: white;
    color: black;
    padding: 10px !important;
    border: 1px solid #e5e7eb;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.header .nav-link {
    color: var(--theme-color2);
    margin-left: 20px;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.header .nav-link:hover {
    color: var(--theme-color1);
}

.header img.main-logo {
    width: 141px;
}

button.main-butn {
    background: var(--theme-color1);
    color: white;
    padding: 8px 24px;
    border: none;
    font-size: 16px;
    border-radius: 30px;


}

button.main-butn:hover {
    background: #7e22ce;
}

button.main-butn-white {
    color: var(--theme-color1);
    padding: 8px 24px;
    border: none;
    font-size: 16px;
    border-radius: 30px;

    background: transparent;
    border: 2px solid var(--theme-color1);
}

button.main-butn-white:hover {
    color: #171717;
}


section.banner {
    background: #fef8fc;
    height: 90vh;
    display: flex;
    align-items: center;
}

.banner h1 {
    font-size: 72px;
}

.banner p {
    font-size: 20px;
}

.banner img.panda {
    width: 192px;
    height: 192px;
    position: absolute;
    right: -28px;
    bottom: -38px;
}

.banner img.tree {
    width: 100%;
    border-radius: 26px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}


.top-badge {
    display: inline-block;
    background: #f3e8ff;
    color: var(--theme-color1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.main-title {
    font-size: 48px;
    font-weight: 500;
}

.matters .sub-text {
    color: var(--theme-color2);
    font-size: 18px;
}


.matters .compare-box {

    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}


.matters .header-left {
    background: #f3ecec;
    padding: 30px;
    font-size: 22px;
    font-weight: 600;
    color: #7f1d1d;
}

.matters .header-right {
    background: #f3e8ff;
    padding: 30px;
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color1);
}


.matters .compare-row {
    background: white;
}

.matters .compare-row div {
    padding: 22px 30px;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

section.matters {
    background: #fef8fc;
}



.puzzle .hero-desc {
    max-width: 720px;
    margin: auto;
    color: var(--theme-color2);
    font-size: 18px;
}


.puzzle .center-illustration {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.puzzle .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: absolute;
}

.puzzle .icon-green {
    background: #25c281;
    top: -61px;
    left: 55%;
    transform: translateX(-50%);
}

.puzzle .icon-yellow {
    background: #ffb200;
    left: -42px;
    top: 33px;
}

.puzzle .icon-purple {
    background: #d76aff;
    right: -42px;
    top: 33px;
}

.center-illustration img {
    width: 100%;
    height: 180px;
}

.puzzle .icon-blue {
    background: #3aa6ff;
    bottom: -64px;
    left: 55%;
    transform: translateX(-50%);
}


.puzzle .feature-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.puzzle .feature-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}


.steps .section-title {
    text-align: center;
    margin-bottom: 60px;
}


.steps .section-title p {
    color: var(--theme-color2);
    font-weight: 500;
    font-size: 18px;
}

.steps .step-card {
    background: white;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.steps .step-card:hover {
    transform: translateY(-5px);
}

.steps .step-card:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.steps .step-number {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;

    transition: transform 0.5s ease;
}

.steps .step-card h4 {
    font-weight: 600;
}

.steps .step-card p {
    color: #6c757d;
    font-size: 15px;
}

.steps {
    padding: 60px 0;
    background: #fef8fc;
}



.skills .section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
}

.skills .skill-card {
    background: #f3edf7;
    border-radius: 16px;
    padding: 28px;
    transition: 0.3s;
    height: 100%;
}

.skills .skill-card:hover {
    transform: translateY(-5px);

}

.skills img.search-panda {
    position: absolute;
    top: 22px;
    height: 200px;
    right: 40px;
}

.skills .icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.skills .skill-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.skills .skill-text {
    color: #6c757d;
    font-size: 14px;
}

.skill-card:hover .icon-box {
    transform: rotate(360deg);
}

.testimonial .stat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
    height: 100%;
}

.testimonial .stat-card:hover {
    transform: translateY(-5px);
}

.testimonial .stat-icon {
    font-size: 28px;
    color: var(--theme-color1);
    margin-bottom: 10px;
}

.testimonial .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color1);
}

.testimonial .stat-text {
    color: var(--theme-color2);
    font-size: 16px;
}

/* testimonial */


.testimonial .testimonial-box {
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial .testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial .testimonial-text {
    font-size: 18px;
    color: var(--theme-color2);
    margin-bottom: 25px;
}

.testimonial .testimonial-name {
    font-weight: 600;
}

.testimonial .testimonial-role {
    font-size: 14px;
    color: var(--theme-color2);
}

.testimonial .owl-dots {
    margin-top: 20px;
    display: none;
}

.testimonial .owl-dot span {
    background: #ccc !important;
}

.testimonial .owl-dot.active span {
    background: var(--theme-color1) !important;
}

.testimonial {
    background: #fef8fc;
}


.hero {
    background: linear-gradient(135deg, #5b21b6, #7e22ce);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: white;
    font-weight: 500;
    font-size: 60px;
}

.hero p {
    color: #e6dfff;
    font-size: 18px;
}

.download-btn {
    background: white;
    color: var(--theme-color1);
    border-radius: 40px;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: #f2f2f2;
    color: var(--theme-color1);
}

.subtext {
    color: #d9ccff;
    font-size: 14px;
    margin-top: 15px;
}

.panda-left {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 150px;
}

.panda-right {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 150px;
}


.waitlist-section {
    padding: 60px 20px;
    text-align: center;
}


.waitlist-section p {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

.waitlist-section .form-control {
    border-radius: 40px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.waitlist-section .form-control:focus {
    border-color: #7c3aed;
    box-shadow: none;
}


.waitlist-section .join-btn:hover {
    opacity: 0.9;
}

.plubo-footer {
    background: #111827;
    color: #b7c3d9;
    padding: 40px 0 20px;
    font-family: system-ui;
}

.plubo-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.plubo-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.plubo-footer .footer-logo img {
    height: 36px;
}

.plubo-footer .footer-text {
    font-size: 14px;
    margin-top: 5px;
}

.plubo-footer .footer-text span {
    color: #ff4d4d;
}

.plubo-footer .footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.plubo-footer .footer-links a {
    color: #c7d1e0;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.plubo-footer .footer-links a:hover {
    color: #ffffff;
}

.plubo-footer .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 30px 0 15px;
}

.plubo-footer .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #8fa0bd;
    margin-bottom: 20px;
}

@media (max-width:768px) {

    .main-title {
        font-size: 32px;
    }

    .matters .header-left,
    .matters .header-right {
        font-size: 18px;
    }

    .waitlist-section h2 {
        font-size: 36px;
    }

    .waitlist-section p {
        font-size: 16px;
    }

}

@media(max-width:991px) {
    section.banner {
        height: 90vh !important;
    }
}

@media(max-width:1199px) {
    .banner h1 {
        font-size: 42px;
    }

    section.banner {
        height: 70vh;
    }
}

@media(max-width:480px) {
    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: 16px;
    }

    .banner img.panda {
        width: 140px;
        height: 140px;
        position: absolute;
        right: -19px;
        bottom: -38px;
    }

    .main-title {
        font-size: 24px;
    }

    .skills img.search-panda {
        position: absolute;
        top: 22px;
        height: 200px;
        right: 40px;
        display: none;
    }

    .testimonial .stat-card {
        background: #fff;
        padding: 35px 15px;
    }

    .testimonial .stat-number {
        font-size: 18px;
        font-weight: 700;
        color: var(--theme-color1);
    }

    .panda-right {

        display: none;
    }

    .panda-left {
        display: none;
    }

    .hero h1 {
        color: white;
        font-weight: 500;
        font-size: 32px;
    }

    .hero {
        background: linear-gradient(135deg, #5b21b6, #7e22ce);
        min-height: 400px;
    }
}