﻿/* SoleFusion Labs - Global Styles */

/*:root {
    --sf-primary: #2c3e50;
    --sf-secondary: #e67e22;
    --sf-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.main-content-wrapper {
    animation: fadeIn 0.5s ease-in-out;
}

.page-content {
    min-height: calc(100vh - 400px);
}*/

/* Glassmorphism Navbar */
/*.sf-appbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.9) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
*/
/* Custom Nav Links Animation */
/*.custom-nav-link {
    position: relative !important;
    transition: all 0.3s ease !important;
}

    .custom-nav-link:hover {
        color: var(--sf-secondary) !important;
    }

    .custom-nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 50%;
        background: var(--sf-secondary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .custom-nav-link:hover::after {
        width: 80%;
    }*/

/* Mobile Drawer Styles */
/*.custom-drawer-link {
    color: white !important;
    margin: 8px 16px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

    .custom-drawer-link:hover, .active-drawer-link {
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
    }*/

/* Global Animations */
/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Professional Scrollbar */
/*::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--sf-secondary);
    border-radius: 4px;
}*/

/* Home Page */

/* Hero Section Premium Styles */
/*.hero-gradient {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 100px 0;
}*/

/*.hero-gradient {
    background: radial-gradient(circle at 80% 20%, rgba(230,126,34,0.08), transparent 40%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}*/

/*.hero-title {
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.1;
    color: #2c3e50;
}*/

/*.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
}

    .hero-title span {
        color: #e67e22;*/ /* Secondary color for Digital Backbone */
    /*}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5f6c7b;
    max-width: 650px;
    line-height: 1.6;
}*/

/* Feature Cards Animation */
/*.feature-card {
    transition: all 0.3s ease-in-out;
    border-top: 5px solid #2c3e50;
    border-radius: 15px;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }*/

/* Main Layout*/
/* Header styling - site.css */
/*.sf-appbar {
    backdrop-filter: blur(12px) !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;*/
    /* Logo aur Nav ko balance karne ke liye padding */
    /* Desktop par logo ko thoda aur aage karne ke liye is value ko badha sakte hain */
    /*padding-left: 6% !important;
    padding-right: 6% !important;
}*/

/* Agar aapko sirf desktop par aage chahiye aur mobile par normal, toh ye use karein: */
/*@media (min-width: 960px) {
    .sf-appbar {
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
}*/
/*.logo-text {
    font-weight: 800 !important;
    letter-spacing: 1px;*/
    /* Yeh color ensure karega ki logo dikhe */
    /*background: linear-gradient(45deg, #2c3e50 30%, #e67e22 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;*/
    /* Thoda sa right side mein gap dene ke liye margin */
    /*margin-left: 15px;
}*/

/*.section-spacing {
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}
.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
.text-accent {
    color: var(--sf-secondary);
}*/

/*New Disgn*/
.sf-appbar {
    border-bottom: 1px solid #e5e7eb;
    background-color: white;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}

.main-content {
    padding-top: 90px;
}

.sf-footer {
    background-color: #111827;
    color: #E5E7EB;
}

.footer-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        color: #E5E7EB; /* brighter */
        text-decoration: none;
        font-weight: 400;
        transition: all 0.2s ease;
    }

        .footer-links a:hover {
            color: #E67E22;
        }

.footer-muted {
    color: #9CA3AF;
}

.footer-highlight {
    color: #E67E22;
    font-weight: 500;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
}
.hero-section {
    padding-top: 140px;
    padding-bottom: 120px;
    background: #F8FAFC;
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 650px;
    color: #4B5563;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}
.text-accent {
    color: #E67E22;
}

.section-spacing {
    padding-top: 120px;
    padding-bottom: 120px;
}

.feature-card {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    transition: all 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.trust-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    font-weight: 500;
    color: #6B7280;
}


/*Vision*/

.vision-hero-advanced {
    padding: 180px 0 140px 0;
    background: linear-gradient(180deg, #111827 0%, #1F2937 100%);
    color: white;
}

.vision-title {
    font-weight: 800;
    line-height: 1.2;
}

.vision-tagline {
    max-width: 800px;
    margin: auto;
    color: #D1D5DB;
}

.vision-highlight-card {
    border-left: 5px solid #E67E22;
    background: #F9FAFB;
    border-radius: 16px;
}

.vision-dark-section {
    background-color: #1F2937;
    color: white;
}

.vision-light-text {
    color: #D1D5DB;
}

.pillar-card {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: 0.25s ease;
}

    .pillar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.vision-closing {
    background: #F8FAFC;
}


/*Platform*/
.platform-hero {
    padding: 180px 0 140px 0;
    background: #F8FAFC;
}

.platform-title {
    font-weight: 800;
    line-height: 1.2;
}

.platform-subtitle {
    max-width: 800px;
    margin: auto;
    color: #4B5563;
}

.platform-paragraph {
    margin-top: 24px;
    line-height: 1.9;
    color: #374151;
}

.module-card {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: 0.25s ease;
}

    .module-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.platform-dark-section {
    background-color: #1F2937;
    color: white;
}

.platform-light-text {
    color: #D1D5DB;
}

/*Technology*/
.tech-hero {
    padding: 180px 0 140px 0;
    background: #F8FAFC;
}

.tech-title {
    font-weight: 800;
    line-height: 1.2;
}

.tech-subtitle {
    max-width: 800px;
    margin: auto;
    color: #4B5563;
}

.tech-card {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: 0.25s ease;
}

    .tech-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.tech-dark-section {
    background-color: #1F2937;
    color: white;
}

.tech-light-text {
    color: #D1D5DB;
}

.tech-paragraph {
    margin-top: 24px;
    line-height: 1.9;
    color: #374151;
}

/*Story*/

.story-hero {
    padding: 180px 0 140px 0;
    background: #F8FAFC;
}

.story-title {
    font-weight: 800;
    line-height: 1.2;
}

.story-subtitle {
    max-width: 800px;
    margin: auto;
    color: #4B5563;
}

.story-paragraph {
    margin-top: 24px;
    line-height: 1.9;
    color: #374151;
}

.story-dark-section {
    background-color: #1F2937;
    color: white;
    padding: 120px 0;
}

.story-light-text {
    color: #D1D5DB;
}

.story-closing {
    background: #F8FAFC;
}