:root {
    --primary-blue: #007AFF;
    --primary-hover: #0056b3;
    --light-blue: #F0F6FF;
    --slate: #1E293B;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--slate);
    scroll-behavior: smooth;
}

.text-primary-blue { color: var(--primary-blue); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-light-blue { background-color: var(--light-blue); }

/* Buttons */
.btn-action-blue {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    transition: 0.3s ease;
}
.btn-action-blue:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-email-redesigned {
    background-color: #f8fafc;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-email-redesigned:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Feature Block */
.icon-circle {
    width: 60px; height: 60px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.asset-frame-light { background: #F8FAFC; border: 1px solid #E2E8F0; }

/* Dashboard Mockup */
.dashboard-mockup { background: #fff; border-radius: 12px; height: 300px; border: 1px solid #E2E8F0; }
.mock-top-bar { height: 30px; background: #F1F5F9; border-bottom: 1px solid #E2E8F0; }
.mock-dot { height: 6px; width: 6px; background: #CBD5E1; border-radius: 50%; }
.mock-line { height: 8px; background: #F1F5F9; border-radius: 4px; }
.mock-stat { height: 80px; background: #F8FAFC; border-radius: 8px; }

/* Table */
.table thead th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #64748B; }

/* Contact Icons */
.contact-icon-blue {
    width: 48px; height: 48px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.badge-custom {
    padding: 6px 16px; background: var(--light-blue); color: var(--primary-blue);
    border-radius: 50px; font-weight: 700; font-size: 0.8rem;
}

/* --- SLIDER & ALIGNMENT FIXES --- */

.dashboard-window {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    /* Keeps the window height consistent as images change */
    min-height: 350px; 
}

.app-image-final {
    width: 100%;
    height: auto;
    display: block;
    /* Ensures every image starts at the top-left sidebar */
    object-fit: cover;
    object-position: top left;
}

/* Customizing the slider arrows to stay professional (No Black) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(190deg) brightness(118%) contrast(119%); /* Electric Blue arrows */
}

/* Ensure the crossfade transition is professional and calm */
.carousel-fade .carousel-item {
    transition-duration: 0.8s;
}