body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.navbar {
    background-color: #34495e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.nav-link {
    color: #ecf0f1 !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #3498db !important;
}

.hero {
    position: relative;
    background: url('img/akif-eserbg.jpg') no-repeat center center/cover;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
}
.hero .content h1 {
    color: white !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
    font-size: 3rem; 
    margin-bottom: 15px;
}

.hero .content {
    z-index: 1;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

section {
    padding: 60px 20px;
}

section h1,
section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
}

.values {
    background-color: #ecf0f1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 0;
}

.values .value-item {
    flex: 1 1 300px;
    padding: 20px;
    text-align: center;
}

.values h5 {
    color: #2980b9;
    font-size: 1.2rem;
}

.quote {
    background-color: #34495e;
    color: white;
    padding: 50px 20px;
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.quote blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: normal;
    color: #ecf0f1;
    padding: 20px;
    border-left: 4px solid #3498db;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.quote footer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ecf0f1;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    word-wrap: break-word;
    max-width: 90%;
    margin: 20px auto 0;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #fff;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}