:root {
    --dark: #0a0a0a;
    --accent: #c19f5f;
    --accent-dark: #8b6d3c;
    --red: #922b21;
    --blue: #1a5276;
    --cream: #f9f3e9;
    --white: #ffffff;
    --text: #d6d6d6;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background-color: var(--dark);
    overflow: hidden;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pagination {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.pagination-item {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-item.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
}

.nav-logo {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.nav-logo span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    position: relative;
    transform: rotate(45deg);
}

.nav-logo span::before {
    content: 'NCR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    color: var(--dark);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 12px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item {
    margin: 15px 0;
    position: relative;
}

.nav-item a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--text);
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    color: var(--accent);
}

.nav-item.active a {
    color: var(--accent);
}

.nav-item .tooltip {
    position: absolute;
    left: 80px;
    top: 0;
    background-color: var(--accent);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item .tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent var(--accent) transparent transparent;
}

.nav-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--text);
    font-size: 16px;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.horizontal-scroll {
    height: 100vh;
    width: 100vw;
    display: flex;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.section {
    min-width: 100vw;
    height: 100vh;
    padding-left: 80px;
    position: relative;
    overflow: hidden;
}

.section-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    z-index: 2;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.6) 100%);
}

.section-number {
    font-size: 8rem;
    color: rgba(193, 159, 95, 0.1);
    font-weight: 700;
    position: absolute;
    right: 5%;
    top: 10%;
    z-index: 1;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    max-width: 700px;
}

.home-section {
    background-color: var(--dark);
}

.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.home-title {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.home-subtitle {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.accent-word {
    color: var(--accent);
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    padding: 12px 40px;
    border: 2px solid var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 250px;
}

.cta-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--dark);
}

.cta-button:hover::before {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator span {
    margin-bottom: 10px;
}

.scroll-indicator i {
    animation: scroll 1.5s infinite ease;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.art-section {
    background-color: var(--dark);
}

.art-bg {
    /* background-image: url('https://placehold.co/1920x1080/c19f5f/0a0a0a?text='); */
}

.art-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.art-cards {
    display: flex;
    margin-top: 50px;
    gap: 30px;
}

.art-card {
    flex: 1;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(193, 159, 95, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.art-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.art-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent);
    transition: all 0.5s ease;
}

.art-card:hover::before {
    height: 100%;
}

.art-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.art-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-section {
    background-color: var(--dark);
}

.about-bg {
    /* background-image: url('https://placehold.co/1920x1080/1a5276/0a0a0a?text='); */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    z-index: 0;
}

.about-quote {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 20px;
    max-width: 300px;
    font-style: italic;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quote-section {
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bg {
    /* background-image: url('https://placehold.co/1920x1080/922b21/0a0a0a?text='); */
}

.quote-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    padding: 0 50px;
}

.quote-mark {
    font-size: 150px;
    line-height: 0;
    position: absolute;
    top: -50px;
    left: 0;
    color: var(--accent);
    opacity: 0.3;
    font-family: 'Cinzel', serif;
}

.quote-text {
    font-size: 2.5rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--accent);
    font-style: italic;
}

.journey-section {
    background-color: var(--dark);
}

.journey-bg {
    background-image: url('https://placehold.co/1920x1080/0a0a0a/0a0a0a?text=');
}

.journey-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.journey-intro {
    max-width: 600px;
    margin-bottom: 50px;
}

.journey-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.events-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255,255,255,0.1);
}

.events-slider::-webkit-scrollbar {
    height: 5px;
}

.events-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.events-slider::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
}

.event-card {
    min-width: 300px;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid rgba(193, 159, 95, 0.2);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.event-date {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.event-location {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-location i {
    color: var(--accent);
    margin-right: 10px;
}

.event-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.event-button:hover {
    background-color: var(--accent);
    color: var(--dark);
}

.gallery-section {
    background-color: var(--dark);
}

.gallery-bg {
    background-image: url('https://placehold.co/1920x1080/0a0a0a/0a0a0a?text=');
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gallery-info {
    max-width: 600px;
    margin-bottom: 50px;
}

.gallery-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-location {
    font-size: 0.9rem;
    color: var(--accent);
}

.contact-section {
    background-color: var(--dark);
}

.contact-bg {
    background-image: url('https://placehold.co/1920x1080/0a0a0a/0a0a0a?text=');
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid rgba(193, 159, 95, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 159, 95, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: var(--accent);
    color: var(--dark);
}

.contact-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-text, .contact-text a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent);
}

.copyright {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    margin: 15px 0;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-social {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1rem;
    margin: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
    .pagination {
        display: none;
    }
    
    .side-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .section {
        padding-left: 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .home-title {
        font-size: 3.5rem;
    }
    
    .art-cards {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image::before, 
    .about-quote {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    body {
        overflow-y: auto;
        height: auto;
    }
    
    .horizontal-scroll {
        flex-direction: column;
        height: auto;
        transition: none;
    }
    
    .section {
        min-width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 100px 20px;
    }
    
    .quote-section .section-content {
        padding: 100px 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .home-title {
        font-size: 3rem;
    }
    
    .home-subtitle {
        font-size: 1.2rem;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .section-content {
        padding: 0 5%;
    }
    .homesectionbackground{
        /* background-blend-mode: luminosity; */
        background-position: center !important;
}
}
.homesectionbackground{
    /* background-blend-mode: luminosity; */
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.awards-horizontal-container {
    position: relative;
    padding-top: 100px;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.awards-timeline {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), rgba(193, 159, 95, 0.3));
    z-index: 0;
    border-radius: 2px;
}

.awards-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 0 20px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.awards-slider::-webkit-scrollbar {
    height: 5px;
}

.awards-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.awards-slider::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
}

.award-item {
    min-width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.year-marker {
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.year-dot {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 0 5px rgba(193, 159, 95, 0.2);
    z-index: 3;
}

.year-connector {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), rgba(193, 159, 95, 0.3));
}

.year-text {
    position: absolute;
    top: -40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.award-item:hover .year-text {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.award-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 159, 95, 0.2);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.award-item:nth-child(odd) .award-card {
    background: linear-gradient(to bottom, rgba(26, 82, 118, 0.2), rgba(10, 10, 10, 0.8));
}

.award-item:nth-child(even) .award-card {
    background: linear-gradient(to bottom, rgba(146, 43, 33, 0.2), rgba(10, 10, 10, 0.8));
}

.award-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.award-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
}

.award-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
    color: white !important;
}

.award-org {
    display: block;
    font-style: italic;
    color: var(--accent);
    font-size: 0.9rem;
    text-align: center;
}

.read-more {
    margin-top: 50px;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    padding: 12px 40px;
    border: 2px solid var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover {
    color: var(--dark);
}

.read-more-btn:hover::before {
    width: 100%;
}

.read-more-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Floating background elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

.bg-element-1 {
    top: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--accent);
}

.bg-element-2 {
    bottom: -50px;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--blue);
}

/* Scroll arrows */
.scroll-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.scroll-arrow {
    background-color: var(--dark);
    color: var(--accent);
    border: 2px solid var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background-color: var(--accent);
    color: var(--dark);
}

/* Timespan indicators */
.time-start, .time-end {
    position: absolute;
    top: 76px;
    background-color: var(--dark);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    z-index: 2;
}

.time-start {
    left: 20px;
}

.time-end {
    right: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .awards-slider {
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .award-item {
        min-width: 300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}