﻿/* ==========================
   GLOBAL STYLES & VARIABLES
   ========================== */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top:84px;
}

/* ==========================
   TYPOGRAPHY
   ========================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}



/* ==========================
   NAVIGATION
   ========================== */

.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size:1rem;
}
.navbar .btn-link {
    box-shadow: none !important;
}
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }
.navbar-brand img {
    height: auto;
    max-width: 120px;
}

.navbar .btn {
    text-transform: none;
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background-color: var(--light-color);
        color: var(--primary-color);
    }

/* ==========================
   BUTTONS
   ========================== */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    border: 1px solid var(--primary);
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
        color: white;
    }

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

    .btn-outline-primary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-1px);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
}

    .btn-link:hover {
        color: var(--primary-color) !important;
    }
.btn-white {
    background: #fff !important;
    color: #333333 !important;
}
/* ==========================
   PLATFORM SHOWCASE SECTION
   ========================== */

.platform-showcase-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.platform-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

    .platform-image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    }

.platform-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.platform-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(37, 99, 235, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.feature-highlights .highlight-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

    .feature-highlights .highlight-item:hover {
        color: var(--text-primary);
    }

.platform-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
}

.cta-buttons .btn {
    margin: 0.25rem;
}


/* ==========================
   HERO SECTION
   ========================== */

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        pointer-events: none;
    }

.hero-badge .badge {
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    text-transform:none;
    white-space:normal;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-stats .stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    position: relative;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 6s ease-in-out infinite;
}

    .floating-card i {
        font-size: 1.25rem;
    }

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 70%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}



/* ==========================
   TRUST SECTION
   ========================== */

.trust-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.trust-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Statistics */
.trust-stat {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .trust-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .trust-stat:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-color);
    }

        .trust-stat:hover::before {
            transform: scaleX(1);
        }

    .trust-stat .stat-icon {
        width: 60px;
        height: 60px;
        background: var(--light-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

        .trust-stat .stat-icon i {
            font-size: 1.5rem;
        }

    .trust-stat:hover .stat-icon {
        background: var(--gradient-primary);
        color: white;
        transform: scale(1.1);
    }
        .trust-stat:hover .stat-icon i {
            color: white !important;
        }
    .trust-stat .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .trust-stat .stat-label {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

/* Company Logos Section */
.company-logos {
    overflow: hidden;
    padding: 2rem 0;
}

.logos-slider {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    width: 280px;
}

.company-card {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .company-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.company-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.company-card:hover .company-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(5deg) scale(1.05);
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.company-industry {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pause animation on hover */
.company-logos:hover .logos-slider {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Certifications */
.certifications {
    margin-top: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

    .cert-badge:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

.cert-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cert-text {
    text-align: left;
}

    .cert-text small {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .cert-text .fw-bold {
        font-size: 0.9rem;
        color: var(--text-primary);
    }


/* ==========================
   FEATURES SECTION
   ========================== */

.features-section {
    padding: 5rem 0;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-color);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

    .feature-link:hover {
        color: var(--primary-dark);
    }

/* ==========================
   WORKFLOW SECTION
   ========================== */

.workflow-section {
    padding: 5rem 0;
}

.workflow-visual {
    position: relative;
}

.workflow-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

.section-badge .badge {
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-list {
    margin: 2rem 0;
}

    .feature-list .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content {
    flex: 1;
}

    .feature-content strong {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

/* ==========================
   SHOWCASE SECTION
   ========================== */

.showcase-section {
    padding: 5rem 0;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .showcase-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .showcase-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .showcase-card:hover img {
        transform: scale(1.05);
    }

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ==========================
   INDUSTRY SECTION
   ========================== */

.industries-section {
    padding: 5rem 0;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #10b981);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .industry-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

        .industry-card:hover::before {
            transform: scaleX(1);
        }

.industry-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-card:hover .industry-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.industry-illustration {
    position: absolute;
    top: -10px;
    right: -15px;
    display: flex;
    gap: 8px;
    z-index: 1;
}

    .industry-illustration i {
        font-size: 1.5rem;
        animation: float 3s ease-in-out infinite;
    }

        .industry-illustration i:nth-child(2) {
            animation-delay: 1.5s;
        }

.industry-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

    .industry-features small {
        padding: 0.25rem 0.75rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.75rem;
        display: block;
        text-align: center;
    }

.industry-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ==========================
   IMAGE STYLING
   ========================== */

.hero-main-image {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

    .hero-main-image:hover {
        transform: scale(1.02);
    }

.workflow-image {
    border: 1px solid var(--border-color);
    background: white;
    transition: transform 0.3s ease;
}

    .workflow-image:hover {
        transform: translateY(-4px);
    }

.showcase-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

    .showcase-image:hover {
        transform: scale(1.05);
    }

/* Professional image shadows and effects */
.workflow-image,
.showcase-image {
    filter: brightness(1.02) contrast(1.02);
}

    .hero-main-image:hover,
    .workflow-image:hover {
        filter: brightness(1.05) contrast(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

/* ==========================
   CUSTOM ILLUSTRATIONS
   ========================== */

/* Dashboard Illustration */
.dashboard-illustration {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    height: 50px;
    background: var(--light-color);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-nav {
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    flex: 1;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

    .dashboard-nav:nth-child(2) {
        animation-delay: 0.5s;
    }

    .dashboard-nav:nth-child(3) {
        animation-delay: 1s;
    }

.dashboard-body {
    flex: 1;
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.dashboard-map {
    flex: 2;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: ping 2s ease-in-out infinite;
}

    .map-marker:nth-child(1) {
        top: 20%;
        left: 30%;
        animation-delay: 0s;
    }

    .map-marker:nth-child(2) {
        top: 60%;
        left: 60%;
        animation-delay: 1s;
    }

    .map-marker:nth-child(3) {
        top: 40%;
        left: 80%;
        animation-delay: 2s;
    }

.dashboard-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    height: 40px;
    background: var(--light-color);
    border-radius: 6px;
    animation: fadeInOut 3s ease-in-out infinite;
}

    .sidebar-item:nth-child(2) {
        animation-delay: 1s;
    }

    .sidebar-item:nth-child(3) {
        animation-delay: 2s;
    }

/* Workflow Illustration */
.workflow-illustration {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    animation: bounce 2s ease-in-out infinite;
}

    .step-icon:nth-child(1) {
        animation-delay: 0s;
    }

.workflow-step:nth-child(2) .step-icon {
    animation-delay: 0.7s;
}

.workflow-step:nth-child(3) .step-icon {
    animation-delay: 1.4s;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: slideRight 1.5s ease-in-out infinite;
}

.workflow-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.workflow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flowLine 3s ease-in-out infinite;
}

.workflow-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 20%;
    left: 15%;
    right: 15%;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

/* Showcase Illustrations */
.showcase-illustration {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.construction-theme {
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
}

.mobile-theme {
    background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
}

.infrastructure-theme {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
}

/* Construction Scene */
.construction-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.crane {
    position: absolute;
    left: 20%;
    bottom: 0;
}

.crane-tower {
    width: 8px;
    height: 120px;
    background: #6b7280;
    border-radius: 4px;
}

.crane-arm {
    width: 80px;
    height: 4px;
    background: #6b7280;
    position: absolute;
    top: 10px;
    left: -20px;
    border-radius: 2px;
}

.buildings {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.building {
    background: #cbd5e1;
    border-radius: 4px 4px 0 0;
}

.building-1 {
    width: 40px;
    height: 80px;
}

.building-2 {
    width: 50px;
    height: 100px;
}

.construction-icons {
    position: absolute;
    top: 20%;
    right: 20%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .construction-icons .icon {
        font-size: 1.5rem;
        animation: float 3s ease-in-out infinite;
    }

/* Mobile Scene */
.mobile-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-device {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 20px;
    padding: 15px 10px;
    position: relative;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-map {
    flex: 2;
    background: #e5f3ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-marker {
    font-size: 1.5rem;
    animation: ping 2s ease-in-out infinite;
}

.mobile-ui {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ui-element {
    height: 15px;
    background: var(--light-color);
    border-radius: 4px;
    animation: fadeInOut 2s ease-in-out infinite;
}

.location-indicators {
    position: absolute;
    top: 10%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Infrastructure Scene */
.infrastructure-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server {
    width: 80px;
    height: 20px;
    background: #374151;
    border-radius: 4px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

    .server::after {
        content: '';
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: #10b981;
        border-radius: 50%;
        animation: blink 2s ease-in-out infinite;
    }

    .server:nth-child(2) {
        animation-delay: 0.5s;
    }

    .server:nth-child(3) {
        animation-delay: 1s;
    }

.network-connections {
    position: absolute;
    top: 30%;
    left: 20%;
    right: 20%;
}

.connection-line {
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    margin-bottom: 20px;
    animation: flowLine 3s ease-in-out infinite;
}

.infrastructure-icons {
    position: absolute;
    bottom: 20%;
    right: 15%;
    display: flex;
    gap: 1rem;
}

    .infrastructure-icons .icon {
        font-size: 1.2rem;
        animation: float 3s ease-in-out infinite;
    }

/* Animations */
@keyframes ping {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes flowLine {
    0% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0.3;
    }
}

/* ==========================
   TESTIMONIAL SECTION
   ========================== */

.testimonial-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.testimonial-quote h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.125rem;
}

/* ==========================
   PRICING SECTION
   ========================== */

.pricing-section {
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .pricing-card.featured {
        border-color: var(--primary-color);
        transform: scale(1.05);
        position: relative;
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin-top: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

    .pricing-features .feature-item {
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

.pricing-footer {
    margin-top: auto;
}

/* ==========================
   CTA SECTION
   ========================== */

.cta-section {
    padding: 5rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ==========================
   FOOTER
   ========================== */

.footer {
    background: var(--dark-color) !important;
    padding: 4rem 0 2rem !important;
}

.footer-brand .logo-text {
    color: white;
}

.footer .logo-icon {
    background: var(--gradient-primary);
    color: white !important;
}

    .footer .logo-icon i {
        color: white !important;
    }

.footer p {
    color: #94a3b8 !important;
    opacity: 0.9;
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: var(--white);
        }

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

    .footer-legal a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.2s ease;
    }

        .footer-legal a:hover {
            color: var(--white);
        }

/* ==========================
   TABLE STYLING
   ========================== */

.table {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th {
        background-color: var(--light-color) !important;
        border-bottom: 2px solid var(--border-color);
        font-weight: 700;
        padding: 1.25rem 1rem;
        vertical-align: middle;
    }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-top: 1px solid var(--border-color);
    }

    .table tbody tr:hover {
        background-color: rgba(37, 99, 235, 0.05);
    }

    /* Professional column highlighting */
    .table th:nth-child(3),
    .table td:nth-child(3) {
        background-color: rgba(37, 99, 235, 0.05);
        position: relative;
    }

    .table th:nth-child(3) {
        background-color: rgba(37, 99, 235, 0.1) !important;
    }

/* ==========================
   ACCORDION IMPROVEMENTS
   ========================== */

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

    .accordion-item:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

.accordion-button {
    border: none;
    background: white;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: white;
        color: var(--primary-color);
        border-bottom: 1px solid var(--border-color);
    }

    .accordion-button::after {
        color: var(--primary-color);
    }

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ==========================
   INDUSTRY SHOWCASE CARDS
   ========================== */

.industry-showcase-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
}

    .industry-showcase-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

.showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem;
    color: white;
}

.showcase-category {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.showcase-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    line-height: 1.3;
}



/* ==========================
   ANIMATIONS
   ========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================
   SCROLL ANIMATIONS
   ========================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }


/* ==========================
   SIGN IN MODAL STYLES
   ========================== */

.modal-dialog {
    max-width: 420px;
}

/* Enhanced modal sizes */
.demo-modal .modal-dialog {
    max-width: 800px;
}

.trial-modal .modal-dialog {
    max-width: 900px;
}

.modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modal-logo {
    text-align: center;
}

.logo-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-title {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.signin-form {
    width: 100%;
}

.form-floating {
    margin-bottom: 1rem;
}

    .form-floating > .form-control {
        border-radius: 12px;
        border: 2px solid #e9ecef;
        padding: 1rem 0.75rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .form-floating > .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
        }

    .form-floating > label {
        color: #6c757d;
        font-weight: 500;
    }

.form-check {
    margin-bottom: 0;
}

.form-check-input {
    border-radius: 6px;
    border: 2px solid #dee2e6;
}

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.form-check-label {
    font-size: 0.9rem;
}

.signin-btn {
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

    .signin-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signin-btn.loading .btn-text {
    opacity: 0;
}

.signin-btn.loading .btn-spinner {
    display: inline-block !important;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #dee2e6;
        z-index: 1;
    }

.divider-text {
    background: white;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.social-btn {
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .social-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .social-btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        transition: left 0.5s ease;
    }

    .social-btn:hover:before {
        left: 100%;
    }

    .social-btn i {
        font-size: 1rem;
    }

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}


/* Button ripple effect */
.signin-btn, .social-btn, .demo-btn, .trial-btn {
    position: relative;
    overflow: hidden;
}

    .signin-btn::after, .social-btn::after, .demo-btn::after, .trial-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .signin-btn:active::after, .social-btn:active::after, .demo-btn:active::after, .trial-btn:active::after {
        width: 200px;
        height: 200px;
    }

/* ==========================
   DEMO MODAL STYLES
   ========================== */

.demo-modal .modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
}

.demo-modal .modal-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.demo-icon-large {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

.demo-modal h3 {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.demo-form {
    width: 100%;
}

.demo-benefits {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

    .demo-benefits h6 {
        color: var(--primary-color);
        font-size: 1rem;
    }

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

    .benefit-item:hover {
        color: var(--text-primary);
        transform: translateX(2px);
    }

.demo-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

    .demo-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        color: white;
    }

    .demo-btn.loading .btn-text {
        opacity: 0;
    }

    .demo-btn.loading .btn-spinner {
        display: inline-block !important;
    }

/* ==========================
   FREE TRIAL MODAL STYLES
   ========================== */

.trial-modal .modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 20px;
    overflow: hidden;
}

.trial-modal .modal-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.trial-icon-large {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.trial-modal h3 {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.trial-benefits {
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.benefit-card {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .benefit-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-card h6 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.benefit-card small {
    font-size: 0.8rem;
}

.trial-form {
    width: 100%;
}

.trial-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    color: white;
}

    .trial-btn:hover {
        background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
        color: white;
    }

    .trial-btn.loading .btn-text {
        opacity: 0;
    }

    .trial-btn.loading .btn-spinner {
        display: inline-block !important;
    }

/* ==========================
   ENHANCED MODAL ANIMATIONS
   ========================== */

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.demo-modal.show .modal-content,
.trial-modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

.demo-icon-large {
    animation: iconPulse 2s ease-in-out infinite;
}

.trial-icon-large {
    animation: iconBounce 2s ease-in-out infinite;
}

/* Form enhancements for modals */
.demo-modal .form-floating > .form-control,
.trial-modal .form-floating > .form-control {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .demo-modal .form-floating > .form-control:focus,
    .trial-modal .form-floating > .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
        transform: translateY(-1px);
    }

.demo-modal .form-floating > label,
.trial-modal .form-floating > label {
    color: #64748b;
    font-weight: 500;
}


/*About Page*/
section.how-it-works {
    padding: 5rem 0;
}
.mission .section-subtitle{
    max-width:100%;
}
.about-page-header{
    min-height:inherit;
}
    .about-page-header img {
        max-width: 600px;
        display: block;
        margin-left: auto !important;
    }
/*Authentication*/
.page-header .page-header-image {
    background-image: url(../img/pattern.png);
    opacity: 0.1;
}
.auth-inner input{
font-size:14px;
}

/*contact page*/
.bg-grey-section {
    background: var(--gradient-light);
}

.contact-card-body {
    max-width: 930px;
    margin: auto;
}
.contactus-page-form {
    padding: 80px 0 30px 0px;
    background-image: url(../img/contact-illustration.png);
    position: relative;
    background-size: 460px;
    background-repeat: no-repeat;
    background-position: bottom right;
}
    .contactus-page-form::after {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-image: url(../img/pattern.png);
        content: '';
        z-index: 0;
        opacity: 0.05;
    }

    .contactus-page-form .container {
        position: relative;
        z-index: 1;
    }

/*pricing*/
.common-accordion .card-header .btn-link {
    justify-content: space-between;
    padding: 12px 15px;
    font-weight: 400;
    box-shadow: none !important;
}
.common-accordion .card-header {
    margin: 0 !important;
    padding: 0;
}
.common-accordion .card-body {
    padding: 15px !important;
    font-weight: 300;
}
.common-accordion .card{
    border-radius:8px !important;
}
.common-accordion .card-header .collapsed .fas {
    transform: rotate(180deg);
}
section.how-it-works .card {
    height: calc(100% - 30px) !important;
}