/*
 * Custom CSS for Fast Scan Website
 * Bootstrap 5.3 Overrides and Custom Styling
 */

/* 1. Color Variables & Typography */
:root {
    --bs-primary: #001737; /* Primary Blue */
    --bs-secondary: #1e40af; /* Secondary Dark Blue */
    --bs-warning: #a30100; /* Warning Orange */
    --bs-font-sans-serif: 'Inter', sans-serif;
}
.bgbluecolor{
	background-color: #001737;
}
.text-color{
	color: #a30100;
}
.text-color2{
	color: #001737;
}
body {
    font-family: var(--bs-font-sans-serif);
    color: #333;
}

/* 2. Custom Layout & Components */

/* Gradient Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Feature & Product Icon Circles */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
    margin-bottom: 1rem;
}

.feature-icon-circle-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--bs-warning), #001737); /* Orange Gradient */
    margin-bottom: 1rem;
}

/* Card Hover Effects */
.card-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.card-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Button Gradients & Hover */
.btn-gradient-primary {
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    transform: scale(1.02);
}

.btn-gradient-warning {
    background: linear-gradient(90deg, var(--bs-warning), #001737);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-gradient-warning:hover {
    background: linear-gradient(90deg, #001737, var(--bs-warning));
    color: #fff;
    transform: scale(1.02);
}

/* Timeline Styling (for ABOUT.PHP) */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid var(--bs-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -16px;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5px;
    right: -25px;
    z-index: 2;
}

.timeline-item.right .timeline-icon {
    left: -25px;
}

/* Responsive adjustments for Timeline */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    .timeline-item::after {
        left: 15px !important;
    }
    .timeline-item.right {
        left: 0%;
    }
    .timeline-item.right::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    .timeline-icon {
        left: 6px !important;
        right: auto !important;
    }
}