﻿/* Task Management Section */
.task-management-section {
    background: white;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .task-management-section .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

/* Section Header */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: #424242;
    margin-bottom: 10px;
    line-height: 1.6;
}

    .section-subtitle strong {
        color: #1565c0;
        font-weight: 600;
    }

.section-tagline {
    font-size: 18px;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Workflow Container */
.workflow-container {
    width:100%!important ;
    background-color: #e9f5ff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.workflow-title {
    font-size: 24px;
    font-weight: 600;
    color: #176CC8; 
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 15px;
    padding: 30px 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
    background-color:white;
}

    .icon-circle i {
        font-size: 32px;
    }

/* Card Text */
.card-text {
    font-size: 15px;
    color :white;
    line-height: 1.6;
    margin: 0;
}
/* Main Container */
.gainbooks-features-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .gainbooks-features-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

/* Trial Button */
.trial-button-container {
    text-align: center;
    padding: 40px 0 30px;
}

.btn-start-trial {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}
a{
    color:white !important;
    text-decoration:none !important;
}

    .btn-start-trial:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        color:white!important ;
    }

/* Platform Section */
.platform-section {
    background: #ffffff;
    padding: 50px 30px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.4);
}

.platform-title {
    font-size: 32px;
    font-weight: 700;
    color: #1565c0;
    text-align: center;
    margin-bottom: 15px;
}

.platform-subtitle {
    font-size: 15px;
    color: #616161;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(25, 118, 210, 0.2);
        border-color: #1976d2;
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background:#ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
}

    .feature-icon i {
        font-size: 28px;
        color: #ffffff;
    }

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #424242;
    line-height: 1.5;
    margin: 0;
}

/* WhatsApp Section */
.whatsapp-section {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    padding: 50px 30px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.whatsapp-left,
.whatsapp-right {
    flex: 1;
    min-width: 280px;
}
.whatsapp-right {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-align:start;
}

.whatsapp-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    text-align:start;
}

/* Task Management Container */
.task-management-container {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: #424242;
    margin-bottom: 10px;
    line-height: 1.6;
}

    .section-subtitle strong {
        color: #1565c0;
        font-weight: 600;
    }

.section-tagline {
    font-size: 18px;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 40px;
}

.plan-para{
    color:white;
}
/* Responsive Design */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-section,
    .whatsapp-section,
    .task-management-container {
        padding: 40px 20px;
    }

    .platform-title,
    .section-title {
        font-size: 26px;
    }

    .whatsapp-title {
        font-size: 22px;
    }

    .workflow-title {
        font-size: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-content {
        flex-direction: column;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        max-width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-start-trial {
        font-size: 14px;
        padding: 12px 24px;
    }

    .platform-title,
    .section-title {
        font-size: 22px;
    }

    .whatsapp-title {
        font-size: 20px;
    }

    .workflow-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .workflow-title {
        font-size: 18px;
    }

    .icon-circle,
    .feature-icon {
        width: 60px;
        height: 60px;
    }

        .icon-circle i,
        .feature-icon i {
            font-size: 28px;
        }

    .card-text,
    .feature-description {
        font-size: 14px;
    }
}
/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .pricing-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

/* Pricing Header */
.pricing-header {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

/* Team Types Section */
.team-types {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.team-type-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;
}

    .team-type-card:hover {
        border-color: #1976d2;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
    }

.team-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .team-icon i {
        font-size: 24px;
        color: #1976d2;
    }

.team-type-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.team-type-desc {
    font-size: 13px;
    color: #757575;
    line-height: 1.4;
    margin: 0;
}

.icon-green {
    filter: invert(62%) sepia(81%) saturate(457%) hue-rotate(72deg) brightness(92%) contrast(89%);
}

/* Pricing Plans */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.popular {
        border: 3px solid #1976d2;
        position: relative;
    }

/* Plan Headers */
.plan-header {
    padding: 20px;
    text-align: center;
}

.starter-header {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.growth-header {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

.enterprise-header {
    background: linear-gradient(135deg, #1976d2 0%, #01579b 100%);
}

.plan-name {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

/* Plan Body */
.plan-body {
    padding: 30px 25px;
    background: #e3f2fd;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
}

    .plan-price .currency {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        vertical-align: top;
    }

    .plan-price .amount {
        font-size: 48px;
        font-weight: 700;
        color: #1976d2;
    }

    .plan-price .period {
        font-size: 14px;
        color: #757575;
        display: block;
        margin-top: -5px;
    }

.custom-price {
    padding: 20px 0;
}

.custom-text {
    font-size: 22px;
    font-weight: 700;
    color: #1976d2;
    line-height: 1.3;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .plan-features li {
        font-size: 14px;
        color: #424242;
        padding: 10px 0;
        display: flex;
        align-items: center;
    }

        .plan-features li i {
            color: #4caf50;
            margin-right: 10px;
            font-size: 16px;
        }

/* Get Started Button */
.btn-get-started {
    width: 100%;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

    .btn-get-started:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
        color:white !important;
    }
/* Tagline Section */
.tagline-section {
    padding: 50px 150px;
    position: relative;
    overflow: hidden;
}

    .tagline-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .tagline-section .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

.tagline-content {
    text-align: center;
    max-width: 800px;
}

/* Tagline Prefix */
.tagline-prefix {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #1976d2;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px black;
}

/* Main Tagline */
.tagline-main {
    font-size: 42px;
    font-weight: 700;
    color: #1565c0;
    line-height: 1.3;
    margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
    .tagline-section {
        padding: 50px 150px;
    }

    .tagline-content {
        text-align: center;
    }

    .tagline-main {
        font-size: 32px;
    }

    .tagline-prefix {
        font-size: 13px;
        padding: 7px 16px;
    }
}

@media (max-width: 480px) {
    .tagline-section {
        padding: 40px 15px;
    }

    .tagline-main {
        font-size: 26px;
    }

    .tagline-prefix {
        font-size: 12px;
        padding: 6px 14px;
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .team-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 15px;
    }

    .pricing-header {
        font-size: 24px;
    }

    .team-types {
        gap: 15px;
    }

    .team-type-card {
        min-width: 150px;
    }

    .plan-price .amount {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .team-types {
        flex-direction: column;
        align-items: center;
    }

    .team-type-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-header {
        font-size: 22px;
    }

    .plan-price .amount {
        font-size: 36px;
    }

    .custom-text {
        font-size: 20px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .task-management-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .workflow-title {
        font-size: 20px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        max-width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .workflow-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .workflow-title {
        font-size: 18px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

        .icon-circle i {
            font-size: 28px;
        }

    .card-text {
        font-size: 14px;
    }
}
