:root {
    --primary-color: #0096E0;
    --primary-light: #33AAFF;
    --primary-dark: #0077B6;
    --secondary-color: #00A8E8;
    --accent-color: #0096E0;
    --dark-color: #1a1a1a;
    --darker-color: #0d0d0d;
    --light-color: #f5f5f5;
    --text-gray: #7a7a7a;
    --border-color: #2d2d2d;
    --gradient-blue: linear-gradient(135deg, #0096E0 0%, #0077B6 100%);
    --gradient-light-blue: linear-gradient(135deg, #33AAFF 0%, #0096E0 100%);
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Card Styles - Clean, modern cards instead of glassmorphism */
.glass {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.glass-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Navigation - Blender style */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.nav-link {
    color: #4a4a4a !important;
    font-weight: 500;
    margin: 0 0.75rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0 !important;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons - Blender style */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    box-shadow: none;
    text-transform: none;
    color: #ffffff;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-primary.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

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

.btn-outline-primary.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    background: transparent;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    font-size: 1rem;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    opacity: 1;
}

.btn-outline-light.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-glass {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

.btn-glass:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
}

/* Hero Section - Blender style */
.hero-section {
    padding: 80px 0 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section.hero-dark {
    background: linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.78)),
                url('/images/hero-background.jpg') center / cover no-repeat;
    color: #ffffff;
}

.hero-section.hero-dark h1 {
    color: #ffffff;
}

.hero-section.hero-dark h2 {
    color: #cccccc;
}

.hero-section.hero-dark p {
    color: #cccccc;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h2 {
    font-size: 1.75rem;
    color: #4a4a4a;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.glass-card:hover .feature-icon {
    transform: scale(1.05);
    color: var(--primary-dark);
}

.feature-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.software-screenshot{
    width: 100%; border-radius: 5px; box-shadow: 6px 6px 24px rgba(0,0,0,0.12);
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

/* Screenshots Carousel */
.screenshot-carousel img {
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-item h5 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-item p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: #f0f8ff;
}

.price-tag {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Footer - Blender style dark footer */
.footer-modern {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px 0;
    border-top: 1px solid #2d2d2d;
}

.footer-modern h5,
.footer-modern h6 {
    color: #ffffff;
}

.footer-modern a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-modern a:hover {
    color: #ffffff;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #2d2d2d;
    color: #cccccc;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

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

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
        margin-top: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Custom scrollbar - Blender style */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Download Page Specific Styles */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirements-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.installer-card {
    position: relative;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.announcement-bar{
    background-color: #bc5b00 !important;
}

/* Accordion Styles */
.accordion-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.accordion-button {
    background: transparent;
    color: #1a1a1a;
    font-weight: 500;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230096E0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1rem 1.5rem;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: 1px solid;
}

.alert-info {
    background-color: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
}

.alert-link {
    color: var(--primary-dark);
    font-weight: 600;
}


.note{
    text-align: center; padding: 1.5rem 2rem; border-radius: 12px; background: linear-gradient(135deg, #eff6ff, #f0f7ff); border: 1px solid #bfdbfe; color: #1e3a5f; font-size: 0.95rem; line-height: 1.7;"
}

/* Badge Styles */
.badge {
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}
