:root {
    --primary-color: #b93131;
    --dark-color: #1a2332;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --text-muted: #6c757d;
    --trust-blue: #0d9edb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: #212529;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #212529;
}

.hero-content p {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.hero-content .badge {
    font-size: 1rem;
    background-color: #b93131;
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* .hover-card:hover {
    border-color: var(--primary-color) !important;
} */

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: #2b303b;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.1);
}

.card-body .icon-box {
    width: 70px;
    height: 70px;
    font-size: 2rem;
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.8);
    z-index: 2;
}

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

.btn-primary:hover {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Table */
.table {
    margin-bottom: 0;
}

.table th {
    border: 2px solid #dee2e6;
    padding: 1.25rem;
    font-weight: 600;
}

.table td {
    border: 1px solid #dee2e6;
    padding: 1rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgba(248, 249, 250, 0.8);
}

/* Section Spacing */
section {
    scroll-margin-top: 70px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .card-body .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-badge {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: -8px;
        right: -8px;
    }

    .table {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bb2d3b;
}

/* Bootstrap Override */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-primary-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.text-primary-subtle {
    color: var(--primary-color) !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-bottom-2 {
    border-bottom-width: 2px !important;
}

.min-vh-50 {
    min-height: 50vh;
}

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

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.iso-certified{
    border: 1px solid #1773cf4d;
    padding: 2px 10px 2px 10px;
    border-radius: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2b303b;
}

.section-title p {
    font-size: 1.125rem;
    color: #818898;
}

.icon-box i {
    color: #b93131;
}

.text-primary{
    color: #b93131 !important;
}

.why-choose .card-title{
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: #2b303b;
}

.card-text{
    font-size: .875rem;
    color: #818898;
}

.track-section{
    background-color: #b931310d;
}

th.bg-theme{
    background-color: #b931311a !important;
}

td.bg-theme{
    background-color: #b931310d !important;
}

.bg-card{
    background-color: #b931310d;
}

.border-card{
    border-width: 2px !important;
}

.border-primary{
    border-color: #b9313180 !important;
}

.card-body .offer{
    background-color: #b931311a;
    color: #b93131;
}

.use-cases-section{
    padding-top: 6rem;
}

.btn-outline-primary{
    border-width: 1px !important;
    border-color: #e5e7eb !important;
    color:#212529 !important;
    font-weight: 600;

}
