
/* Animated Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--primary-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}



/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, white 50%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-content-pl {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--soft-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Interactive Demo */
.demo-section {
    padding: 5rem 0;
    background: white;
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    padding: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--soft-gray);
    line-height: 1.6;
}

/* Platform Visualization */
.platform-visual {
    display: flex;
   /* background: linear-gradient(135deg, #F0F9FF 0%, white 100%);
    border-radius: 30px;*/
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.device-mockup {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.desktop-view {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 1rem;
    position: relative;
}

.browser-bar {
    background: #F3F4F6;
    border-radius: 10px 10px 0 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
}

.browser-dot:first-child { background: #EF4444; }
.browser-dot:nth-child(2) { background: #F59E0B; }
.browser-dot:nth-child(3) { background: #10B981; }

.dashboard-preview {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    min-height: 500px;
    position: relative;
}

/* Dashboard Elements */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-welcome {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: linear-gradient(135deg, #F9FAFB 0%, white 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--vibrant-orange);
}

.dash-metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.dash-label {
    color: var(--soft-gray);
    font-size: 0.875rem;
}

/* Employment Timeline */
.employment-timeline {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
}

.timeline-header {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.timeline-track {
    height: 60px;
    background: white;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-segment {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-segment:hover {
    filter: brightness(1.1);
    z-index: 10;
}

.segment-tourism {
    background: var(--gradient-blue);
    left: 0;
    width: 25%;
}

.segment-retail {
    background: var(--gradient-orange);
    left: 25%;
    width: 25%;
}

.segment-agriculture {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    left: 50%;
    width: 25%;
}

.segment-logistics {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    left: 75%;
    width: 25%;
}

/* Mobile View */
.mobile-view {
    display: none;
   /* position: absolute;
    bottom: -30px;
    right: -30px;*/
    width: 300px;
    height: 600px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
   /* padding: 1rem;*/
    border: 10px solid #1F2937;
}

.mobile-screen {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    /*padding: 1rem;*/
    min-height: 400px;
}

.mobile-header {
    background: linear-gradient(135deg, var(--cream) 0%, white 50%, #F0F9FF 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.fcam{
    display: flex;
    align-content: center;
    justify-content: center;
    justify-self: center;
    position: absolute;
    top: 20px;
    
    border-radius: 25px;
    height: 25px;
    width: 80px;
    background: black;
}
.cam{
    left: 5px;
    position: absolute;
    background-color: #1f2937;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    align-self: center;
    justify-self: left;

    
}
.mobile-logo {
    padding-left: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.notification-badge {
    width: 30px;
    height: 30px;
    background: var(--vibrant-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Features Grid */
.features-section {
    padding: 5rem 2rem;
    background: #F9FAFB;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.feature-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-block:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--soft-gray);
    line-height: 1.6;
}

/* Technology Stack */
.tech-section {
    padding: 5rem 2rem;
    background: white;
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, white 0%, #F9FAFB 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--vibrant-orange) 0%, transparent 70%);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.tech-card:hover::before {
    width: 200%;
    height: 200%;
}

.tech-card:hover {
    border-color: var(--vibrant-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.tech-name {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.tech-description {
    font-size: 0.875rem;
    color: var(--soft-gray);
}

/* Process Flow */
.process-section {
    padding: 5rem 2rem;
    background: var(--gradient-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" fill-opacity="0.05" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,186.7C1248,160,1344,96,1392,64L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 40px;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
}

.process-step:last-child::after {
    display: none;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: white;
    color: var(--primary-blue);
    transform: scale(1.1);
}

.process-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* CTA Section */
.platform-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-view {
        display:none;
    }
    .mobile-view {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }



   
}
@media (max-width: 500px) {
        .tech-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}