/* --- VARIABLES & FONTS --- */
:root {
    --primary-color: #1a73e8;
    /* Bright Blue */
    --primary-dark: #0f2b4d;
    /* Navy Dark Blue from Logo */
    --primary-soft: rgba(26, 115, 232, 0.1);

    --success-color: #0caf60;
    --success-soft: rgba(12, 175, 96, 0.1);

    --danger-color: #f73164;
    --danger-soft: rgba(247, 49, 100, 0.1);

    --warning-color: #ffc107;
    --warning-soft: rgba(255, 193, 7, 0.1);

    --info-color: #0dcaf0;
    --info-soft: rgba(13, 202, 240, 0.1);

    --dark-soft: rgba(33, 37, 41, 0.1);

    --font-family: 'Inter', sans-serif;
    --bg-light: #f8fbff;
}

body {
    font-family: var(--font-family);
    color: #333333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

/* --- UTILITIES --- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-soft {
    background-color: var(--primary-soft) !important;
}

.bg-success-soft {
    background-color: var(--success-soft) !important;
}

.bg-danger-soft {
    background-color: var(--danger-soft) !important;
}

.bg-warning-soft {
    background-color: var(--warning-soft) !important;
}

.bg-info-soft {
    background-color: var(--info-soft) !important;
}

.bg-dark-soft {
    background-color: var(--dark-soft) !important;
}

.tracking-wide {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.85rem;
}

.fs-8 {
    font-size: 0.5rem;
}

.h-10px {
    height: 10px;
}

.h-15px {
    height: 15px;
}

.h-20px {
    height: 20px;
}

.h-60px {
    height: 60px;
}

.h-150px {
    height: 150px;
}

.max-w-700 {
    max-width: 700px;
}

/* --- NAVBAR --- */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.nav-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.brand-text {
    color: var(--primary-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--primary-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 100vh;
}

.hero-image-wrapper {
    perspective: 1000px;
}

.abstract-dashboard {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border-width: 4px !important;
}

.hero-image-wrapper:hover .abstract-dashboard {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.icon-box {
    width: 48px;
    height: 48px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- FEATURES SECTION --- */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-width: 1px !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.feature-card .icon-wrapper {
    width: 65px;
    height: 65px;
}

/* --- LIVE DEMO SECTION --- */
.live-demo-section {
    background-color: var(--primary-dark) !important;
    padding-top: 120px;
    padding-bottom: 120px;
}

.bg-shape {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: #0dcaf0;
    bottom: -50px;
    left: -50px;
}

.z-index-1 {
    z-index: 1;
}

.demo-widget {
    background-color: #ffffff;
    max-width: 550px;
    margin: 0 auto;
}

.pulse-animation {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sim-val-table {
    transition: background-color 0.5s ease;
}

.val-updated {
    background-color: rgba(26, 115, 232, 0.15) !important;
    color: var(--primary-color) !important;
}

/* --- GALLERY SECTION --- */
.gallery-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-width: 2px !important;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

.aspect-ratio-video {
    position: relative;
    width: 100%;
    background-color: #e9ecef;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
    opacity: 1 !important;
    transform: translateY(-3px);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        animation: none;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
}