/*
Theme Name: Khan Venture Theme
Theme URI: https://khanventureltd.com
Author: Faisal Hossan (Adi)
Author URI: https://khanventureltd.com
Description: A custom, dynamic, and minimal landing page theme for Khan Venture Ltd and its associated businesses.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: landing-page, custom-theme, one-page, business
Text Domain: khanventure
*/

body {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    background-color: #f8fafc; /* Light gray background */
    color: #1e293b; /* Slate 800 for text */
}
.brand-gradient-text {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #475569; /* Slate 600 */
    max-width: 600px;
    margin: 0 auto 3rem auto;
}
.venture-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e2e8f0; /* Slate 200 */
}
.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.nav-link {
    transition: color 0.3s;
    cursor: pointer;
}
.nav-link.active {
    color: #2563eb; /* Blue 600 */
    font-weight: 600;
}
.hidden-page {
    display: none;
}
.fade-in {
    animation: fadeInAnimation 0.8s ease-in-out;
}
@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
