/* Custom Styles for Mcube Infotech Landing Page */
:root {
    --primary-color: #6f42c1;
    /* Purple */
    --secondary-color: #0d6efd;
    /* Blue */
    --accent-color: #ffc107;
    /* Yellow */
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden !important;
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        padding: 0 !important;
        overflow-x: hidden !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* Utilities */
.text-purple {
    color: var(--primary-color) !important;
}

.text-blue {
    color: var(--secondary-color) !important;
}

.text-yellow {
    color: var(--accent-color) !important;
}

.bg-card {
    background-color: var(--card-bg);
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(30 30 30) !important;
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.02);
    z-index: 10;
    border-color: var(--secondary-color);
}

.pricing-header {
    padding: 30px;
    text-align: center;
}

.pricing-body {
    padding: 30px;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.check-list li {
    margin-bottom: 10px;
    list-style: none;
    display: flex;
    align-items: center;
}

.check-list li::before {
    content: "✔";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.comparison-row {
    background: var(--card-bg);
    transition: transform 0.2s;
}

.comparison-row:hover {
    transform: scale(1.01);
}

.comparison-cell {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-cell:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.comparison-cell:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
    /* Use card background for track */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    /* Use primary color for thumb */
    border-radius: 10px;
    border: 2px solid var(--card-bg);
    /* Border to match track color */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
    /* Hover effect with secondary color */
}

::-webkit-scrollbar-corner {
    background: var(--card-bg);
}

.active-nav-item {
    color: var(--primary-color);
}


@media (max-width: 992px) {
    .list-unstyled.row {
        justify-content: center;
    }
}


.client-card-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: block;
    /* Make the entire card clickable */
    text-decoration: none;
    /* Remove underline from link */
    color: inherit;
    /* Inherit text color */
}

.client-card-hover:hover {
    transform: translateY(-5px) scale(1.02);
    /* Subtle zoom and lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
}

.client-mockup-img {
    border-radius: 0.75rem;
    /* Rounded corners for image container */
    overflow: hidden;
    /* Ensure image respects border-radius */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border for mockup feel */
    margin-bottom: 1rem;
}

.client-mockup-img img {
    width: 100%;
    height: auto;
    display: block;
}