 /* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.text-content, .visual-content {
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: left;
}

.section-title-tra{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}


.section-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #660033 0%, #743089 50%, #000080 100%);
    color: white;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.sign-in-button-top{
    color:white;
    text-decoration: none;
    padding-top: 5px;
}

.contact{
    position: bottom;
    text-decoration: none;
    color: white;
}

.cta-button {
    background: #fff;
    color: #660033;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; }
    30% { top: 20px; }
    100% { top: 20px; }
}

/* Value Proposition Sections */
.value-section {
    background: white;
}

.value-section:nth-child(even) {
    background: #f0f4f8;
}

.value-section:nth-child(odd) .content-container {
    flex-direction: row-reverse;
}

/* Value Proposition 1 - Deep Understanding */
#deep-understanding {
    background: linear-gradient(to bottom, #660033, #743089);
    color: white;
}

#deep-understanding .section-title,
#deep-understanding .section-description {
    color: white;
}

.feature-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-icons p{
    color: white;
}


.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    color: white;
    
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 300px;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
    top: 50%;
    left: 60%;
    animation-delay: 1s;
}

.element-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    top: 10%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Value Proposition 2 - Class Progress */
.progress-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    width: 100%;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #660033;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
}

.progress-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 87%;
    background: linear-gradient(to right, #660033, #743089);
    border-radius: 10px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.class-overview-section {
    margin-top: 1rem;
}

.overview-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.overview-header h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.overview-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.overview-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.class-overview-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.class-overview-image:hover {
    transform: scale(1.02);
}



.features-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-item {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #660033;
    font-weight: bold;
}

/* Value Proposition 3 - Next Steps */
.roadmap-preview {
    margin-top: 2rem;
}

.roadmap-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.roadmap-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.roadmap-step.active .step-number {
    background: #660033;
    color: white;
}

.step-content h4 {
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.mind-map {
    position: relative;
    width: 100%;
    height: 300px;
}

.mind-node {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #660033, #743089);
    color: white;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.node-1 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-2 {
    top: 20%;
    left: 70%;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-3 {
    top: 70%;
    left: 20%;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-4 {
    top: 70%;
    left: 70%;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: absolute;
    background: #660033;
    transform-origin: 0 0;
}

.line-1 {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 3px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.line-2 {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 3px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.line-3 {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 3px;
    transform: translate(-50%, -50%);
}

/* Value Proposition 3 - Ease of Use Visual */
.ease-of-use-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.step-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.step-description {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #660033;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.efficiency-meter {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.meter-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.meter-bar {
    position: relative;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(to right, #660033, #743089);
    border-radius: 10px;
    position: relative;
    animation: fill-animation 2s ease-out;
}

.meter-percentage {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

@keyframes fill-animation {
    0% { width: 0%; }
    100% { width: 75%; }
}

/* Value Proposition 4 - AI Tutoring Dashboard */
.ai-tutoring-dashboard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f4f8;
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.ai-pulse {
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 50%;
    animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.availability-status {
    background: #e8f5e9;
    color: #4caf50;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.learning-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateX(5px);
}

.metric-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.metric-info {
    flex: 1;
}

.metric-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.metric-value {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.learning-progress {
    text-align: center;
}

.progress-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.progress-visualization {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.progress-segment {
    width: 30px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.progress-segment.active {
    background: linear-gradient(to right, #660033, #743089);
    animation: segment-glow 2s ease-in-out infinite;
}

@keyframes segment-glow {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.tutoring-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Value Proposition 5 - Moderated Responses */
.moderation-visual {
    width: 100%;
}

.chat-interface {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #660033;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moderation-badge {
    background: #4caf50;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 1rem;
    border-radius: 15px;
    position: relative;
}

.user-message {
    align-self: flex-end;
    background: #e3f2fd;
    border-bottom-right-radius: 5px;
}

.ai-message {
    align-self: flex-start;
    background: #f5f5f5;
    border-bottom-left-radius: 5px;
}

.moderation-message {
    align-self: flex-start;
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-bottom-left-radius: 5px;
}

.message-content {
    font-size: 0.9rem;
}

.moderation-features {
    margin-top: 2rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-large {
    font-size: 2.5rem;
    min-width: 60px;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #660033 0%, #743089 50%, #000080 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button.primary {
    background: white;
    color: #660033;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section.visible .feature-icons,
.section.visible .progress-dashboard,
.section.visible .roadmap-preview,
.section.visible .tutoring-visual,
.section.visible .moderation-visual,
.section.visible .cta-container {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-container {
        max-width: 1000px;
        gap: 2rem;
    }
    
    .full-width-flow {
        gap: 15px;
    }
    
    .flow-step, .after-step {
        min-width: 180px;
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .content-container {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-icons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title-tra {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .tutoring-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section {
        min-height: 100vh;
    }
    
    .full-width-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .flow-step, .after-step {
        min-width: 160px;
        margin: 10px;
    }
    
    .flow-arrow, .ai-arrow {
        display: none;
    }
    
    .progress-dashboard {
        padding: 1.5rem;
    }
    
    .dashboard-container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
        min-height: 100vh;
    }
    
    #hero {
        min-height: 100vh;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-title-tra {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icons {
        gap: 1rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .floating-elements {
        height: 200px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: relative;
    }
    
    .floating-element {
        position: relative;
        top: auto;
        left: auto;
    }
    
    .element-1 {
        width: 60px;
        height: 60px;
    }
    
    .element-2 {
        width: 50px;
        height: 50px;
    }
    
    .element-3 {
        width: 40px;
        height: 40px;
    }
    
    .content-container-full-width {
        padding: 0 1rem;
    }
    
    .full-width-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .flow-step, .after-step {
        min-width: 250px;
        max-width: 300px;
        width: 100%;
    }
    
    .ai-benefits-grid {
        flex-direction: column;
        gap: 10px;
    }
    
    .learning-metrics {
        gap: 0.8rem;
    }
    
    .metric-card {
        padding: 0.8rem;
    }
    
    .moderation-features .feature-row {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-large {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 1.5rem 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-title-tra {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-container {
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .feature-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon p {
        font-size: 0.9rem;
    }
    
    .progress-dashboard {
        padding: 1rem;
    }
    
    .dashboard-container {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .ai-indicator {
        justify-content: center;
    }
    
    .learning-metrics {
        gap: 0.5rem;
    }
    
    .metric-card {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .metric-icon {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .class-overview-image {
        max-width: 100%;
        height: auto;
    }
    
    .features-list {
        margin-top: 1rem;
    }
    
    .feature-item {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .moderation-features .feature-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon-large {
        font-size: 1.8rem;
        min-width: 40px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
    }
    
    .mouse {
        width: 20px;
        height: 35px;
    }
    
    .mouse::before {
        width: 4px;
        height: 4px;
        top: 8px;
    }
    
    footer {
        flex-direction: column;
        gap: 20px;
        padding: 1.5rem 1rem;
    }
    
    .gradient-wrapper footer {
        gap: 15px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-title-tra {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .dashboard-container {
        padding: 1rem;
        max-width: 280px;
    }
    
    .metric-card {
        padding: 0.5rem;
    }
    
    .metric-title {
        font-size: 0.8rem;
    }
    
    .metric-value {
        font-size: 0.7rem;
    }
    
    .progress-segment {
        width: 20px;
        height: 6px;
    }
    
    .benefit-chip {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}


.process-section-after {
    flex: 1 1 10%;
    width: 50%;
}

.process-section-before {
    flex: 1 1 50%;
    width: 100%;
}


.process-header {
    text-align: center;
    margin-bottom: 30px;
}

.process-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.time-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.before-process .time-badge {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.after-process .time-badge {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}





.mini-time {
    font-size: 0.65rem;
    color: #e74c3c;
    font-weight: 600;
}

/* Arrow connectors between steps */
.flow-arrow {
    width: 30px;
    height: 2px;
    background: #bdc3c7;
    position: relative;
    margin: 0 5px;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #bdc3c7;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}



/* VS Transition */
.vs-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



/* After Process - Compact */
.after-process {
    text-align: center;
}


.ai-arrow {
    width: 40px;
    height: 3px;
    background: #27ae60;
    position: relative;
}

.ai-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #27ae60;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.ai-benefits-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit-chip {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2c3e50;
}

/* Compact Benefits */
.benefits-summary-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-stat {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 100px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}


/* New Full Width Flowchart Styles */
.content-container-full-width {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-left {
    text-align: left;
    margin-bottom: 60px;
    padding-left: 0;
}

.full-width-flowchart {
    width: 100%;
}

.process-section {
    width: 100%;
    margin-bottom: 60px;
}

.process-header {
    text-align: center;
    margin-bottom: 40px;
}

.full-width-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: none;
    padding: 20px 0;
}

.flow-step {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width:15%;
    flex: 1;
    margin: 0 10px;
}

.after-step{
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width:15%;
    flex: 1;
    margin: 0 10px;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.flow-step .step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.flow-step .step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.3;
}

.flow-step .step-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ai-step {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #4ecdc4;
    max-width: 20%;
}

.ai-step .step-icon {
    color: #4ecdc4;
}

/* Enhanced arrows for full width */
.flow-arrow {
    width: 40px;
    height: 3px;
    background: #bdc3c7;
    position: relative;
    flex-shrink: 0;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 12px solid #bdc3c7;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.ai-arrow {
    width: 50px;
    height: 4px;
    background: #27ae60;
    position: relative;
    flex-shrink: 0;
}

.ai-arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 15px solid #27ae60;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

/* Responsive for full width layout */
@media (max-width: 1200px) {
    .full-width-flow {
        gap: 15px;
    }
    
    .flow-step {
        min-width: 180px;
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .full-width-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .flow-step {
        min-width: 160px;
        margin: 10px;
    }
    
    .flow-arrow, .ai-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-container-full-width {
        padding: 0 1rem;
    }
    
    .section-header-left {
        text-align: center;
        padding-left: 0;
    }
    
    .full-width-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .flow-step {
        min-width: 250px;
        max-width: 300px;
        width: 100%;
    }
}



