﻿.hero-section {
    height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(20, 39, 78, 0.7), rgba(20, 39, 78, 0.4));
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
    color: var(--aydogan-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.hero-buttons {
    margin-top: 2rem !important;
}


.scroll-down-indicator {
    position: absolute;
    z-index: 3;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 60px;
    position: relative;
}

.mouse .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scroll-anim 2.5s infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 1;
        top: 10px;
    }

    15% {
        opacity: 1;
        top: 10px;
    }

    50% {
        opacity: 0;
        top: 25px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

.about-section {
    background-color: #f8f9fa; 
    overflow: hidden; 
}

.about-image-container {
    position: relative;
    padding: 1rem; 
}

.about-image-container .decorative-shape {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background-color: var(--aydogan-gold);
    border-radius: 0.375rem;
    z-index: 1;
    opacity: 0.5;
}

.about-image-container img {
    position: relative;
    z-index: 2;
}
.services-section {
    background-color: #fff;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-icon {
    font-size: 3rem;
    color: var(--aydogan-gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-weight: 600;
    color: var(--aydogan-navy);
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.95rem;
    color: #6c757d;
}

.stats-section {
    background-color: var(--aydogan-navy);
    color: #fff;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--aydogan-gold);
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.gallery-section {
    background-color: #fff;
}

.filter-buttons .btn-filter {
    background-color: #f1f1f1;
    color: var(--aydogan-dark-gray);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-buttons .btn-filter:hover {
    background-color: var(--aydogan-navy);
    color: #fff;
}

.filter-buttons .btn-filter.active {
    background-color: var(--aydogan-gold);
    color: var(--aydogan-navy);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 39, 78, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
