@font-face {
    font-family: 'HelveticaCustom';
    src: url('../fonts/Helvetica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCustom';
    src: url('../fonts/Helvetica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCustom';
    src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaRounded';
    src: url('../fonts/Helvetica-Rounded-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaBoldOblique';
    src: url('../fonts/Helvetica-BoldOblique.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaOblique';
    src: url('../fonts/Helvetica-Oblique.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
:root {
    --primary-green: #00BF63;
    --light-green: #d1fae5;
    --dark-gray: #1f2937;
}

body {
    font-family: 'HelveticaCustom', Arial, sans-serif;
}

/* Header */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-green) !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-link {
    color: #4b5563 !important;
    font-weight: 500;
    margin: 0 1rem;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.btn-outline-success {
    border-color: var(--primary-green);
    color: var(--primary-green);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 7px 7px 0px 0px #117D4B;

}

.btn-outline-success:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .text-success {
    color: var(--primary-green) !important;
}

.hero-title .text-italic {
    font-style: italic;
    color: #34d399;
}

.hero-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.btn-get-started {
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    box-shadow: 7px 7px 0px 0px #117D4B;
}
.btn-get-started .bi-circle:before{
    font-weight: bold !important;
}

.btn-get-started:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.hero-image {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
}

.task-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* App Preview Section */
/*.app-preview-section {*/
/*    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 50%, #10b981 100%);*/
/*    padding: 5rem 0;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.preview-container {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 3rem;
    padding: 4rem 2rem;
    position: relative;
}

.phone-mockup {
    background: white;
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: rotate(-12deg);
    margin: 0 1rem;
}

.phone-mockup.rotate-right {
    transform: rotate(6deg);
}

.preview-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

/* Integration Section */
.integration-section {
    padding: 2rem 0;
    background: #ffffff;
}

.integration-icon {
    font-size: 1.5rem;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.feature-card {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-icon-box {
    background: var(--light-green);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-bottom: 1.5rem;
}

.feature-phone {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Task Manager Section */
.task-manager-section {
    text-align: center;
    padding: 3rem 0;
}

.task-manager-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefit Cards */
.benefit-card {
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.benefit-card.orange {
    background: #FC4F24;
}

.benefit-card.green {
    background: #00BF63;
}

.benefit-card.purple {
    background: #975BEC;
}

.benefit-card.purple::before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 115px;
    left: 141px;
    right: 0;
    width: 90%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    z-index: -1;
    rotate: 365deg;
}

.benefit-card.purple > * {
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.benefit-card .card-line{
    width: 2px;
    height: 50%;
    background: #fff;
    margin-left: 16px;
    margin-top: 10px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    border: 1px solid #ffffff54;
    padding: 12px;
    border-radius: 22px;
    width: fit-content;
    margin-bottom: 10px;
}


/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #f9fafb00;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 7px 7px 0px 0px #B5B5B5;
    height: 100%;
}

.pricing-card.featured {
    background: #00BF63;
    color: white;
    transform: scale(1.05);
    box-shadow: 7px 7px 0px 0px #117D4B;

}

.price {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

/* Testimonials */
.testimonial-section {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f9f9f900;
            padding: 80px 20px;
        }

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

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

        .testimonial-section .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonial-section .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ff6b35;
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-section .badge::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #ff6b35;
            border-radius: 50%;
        }

        .testimonial-section .main-title {
            font-size: 48px;
            font-weight: 700;
            color: #000;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .testimonial-section .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .testimonial-section .testimonial-card {
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .testimonial-section .testimonial-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .testimonial-section .testimonial-title {
            font-size: 20px;
            font-weight: 700;
            color: #000;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .testimonial-section .user-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .testimonial-section .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-section .user-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin-bottom: 4px;
        }

        .testimonial-section .user-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .testimonial-section .testimonial-text {
            font-size: 16px;
            color: #4a4a4a;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-section .testimonial-list {
            font-size: 15px;
            color: #4a4a4a;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .testimonial-section .nested-testimonial {
            background: #f5f5f5;
            border-radius: 16px;
            padding: 18px 20px;
            margin-bottom: 12px;
        }

        .testimonial-section .nested-testimonial:last-child {
            margin-bottom: 0;
        }

        .testimonial-section .nested-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .testimonial-section .nested-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-section .nested-user-info h5 {
            font-size: 15px;
            font-weight: 600;
            color: #000;
            margin-bottom: 2px;
        }

        .testimonial-section .nested-user-info p {
            font-size: 13px;
            color: #666;
        }

        .testimonial-section .nested-text {
            font-size: 15px;
            color: #4a4a4a;
            line-height: 1.6;
        }

        .testimonial-section .see-more-container {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .testimonial-section .see-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #00d084;
            color: #fff;
            font-size: 17px;
            font-weight: 600;
            padding: 18px 140px;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-section .see-more-btn:hover {
            background: #00b872;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 208, 132, 0.35);
        }

        .testimonial-section .see-more-btn::before {
            content: '';
            width: 22px;
            height: 22px;
            border: 2.5px solid #fff;
            border-radius: 50%;
            display: inline-block;
        }

        .testimonial-section .hidden {
            display: none;
        }

        @media (max-width: 992px) {
            .testimonial-section .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonial-section .main-title {
                font-size: 36px;
            }

            .testimonial-section .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-section .see-more-btn {
                padding: 16px 100px;
                font-size: 16px;
            }
        }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d1fae5 0%, #dbeafe 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #ffffff;
    color: white;
    padding: 3rem 0 1.5rem;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-green);
}

.footer-brand {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-card1:before{
    content: '';
    background-image: url("{{asset('public/images/website-images/backcard.png')}}");
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        transform: rotate(0deg) !important;
        margin-bottom: 1rem;
    }
}