:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --danger-color: #dc3545;
    --purple-color: #6f42c1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.navbar-custom {
    background-color: #ffffff; /* White background */
    border: 0px solid #F37021; /* Orange border */
    border-radius: 0px; /* Rounded corners */
    padding: 0.5rem 1rem;
}

    /* Navbar links */
    .navbar-custom .nav-link {
        color: #F37021 !important;
    }

    /* Button links */
    .navbar-custom .btn {
        color: #F37021;
        border-color: #F37021;
    }

    /* Navbar-toggler icon orange */
    .navbar-custom .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='orange' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

/*header.navbar {
    padding-top: 1.2rem;*/ /* increase space above content */
    /*padding-bottom: 1rem;*/ /* increase space below content */
/*}*/

/* Change the navbar-toggler icon to orange */
/*.navbar-light .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='orange' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand {
    font-size: 1.8rem !important;
}*/

.navbar-brand {
    font-size: 2rem !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}


.min-vh-75 {
    min-height: 75vh;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: translateY(-5px);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.pricing-display {
    margin-bottom: 1rem;
}

.feature-badge {
    font-size: 0.875rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary-color);
}

.text-purple {
    color: var(--purple-color) !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Form styling */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-orange {
    background-color: #ff7f00 !important; /* Bright orange */
    color: #fff !important;
    border: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .btn-orange:hover {
        background-color: #e66900 !important; /* Darker orange on hover */
        transform: translateY(-2px); /* Small lift */
        color: #fff !important;
    }
