﻿
:root {
    --primary-color: #4a235a;
    --accent-color: #c5a059;
    --surface-color: #f8f9fa;
    --on-surface: #191c1d;
    --on-primary: #ffffff;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--surface-color);
    color: var(--on-surface);
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.bg-primary-altaj {
    background-color: var(--primary-color) !important;
}

.text-primary-altaj {
    color: var(--primary-color) !important;
}

.bg-accent-altaj {
    background-color: var(--accent-color) !important;
}

.text-accent-altaj {
    color: var(--accent-color) !important;
}

.border-accent-altaj {
    border-color: var(--accent-color) !important;
}

/*.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link {
    color: var(--on-primary) !important;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--accent-color) !important;
    }

    .nav-link.active {
        border-bottom: 2px solid var(--accent-color);
    }
*/
.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 0.5rem 1.5rem;
}

    .btn-accent:hover {
        background-color: #b08e4d;
        color: #fff;
    }

.timeline-section {
    position: relative;
    padding: 80px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateX(-50%);
    opacity: 0.3;
}

@media (max-width: 767.98px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-step-number {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }
}

.timeline-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    border: 4px solid var(--surface-color);
}

    .timeline-step-number.alt {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }

.card-custom {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

.material-symbols-outlined {
    vertical-align: middle;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 1rem auto 0;
        border-radius: 2px;
    }

.news-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover img {
    transform: scale(1.05);
}

footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

    footer h3, footer h2 {
        color: var(--accent-color);
        margin-bottom: 1.5rem;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s;
}

    .social-link:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
    }


