.diamond-outline, .diamond-filled {
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
}
.diamond-outline {
    border: 2px solid #333;
}
.diamond-filled {
    background-color: #e3342f;
}

/* Yukarı Çık Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, background-color 0.3s;
}
.scroll-to-top.show {
    opacity: 1;
}
.scroll-to-top:hover {
    background-color: #555;
}

/* Dekoratif Çizgiler ve Çerçeveler */
.contact-container {
    position: relative;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.decoration {
    position: absolute;
    border: 2px solid #e3342f;
}

.decoration.top, .decoration.bottom {
    width: 90%;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.decoration.top {
    top: -20px;
    border-top: none;
    border-radius: 20px 20px 0 0;
}

.decoration.bottom {
    bottom: -20px;
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.decoration.left, .decoration.right {
    width: 20px;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
}

.decoration.left {
    left: -20px;
    border-left: none;
    border-radius: 20px 0 0 20px;
}

.decoration.right {
    right: -20px;
    border-right: none;
    border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {
    .decoration.left, .decoration.right {
        display: none;
    }
}

/* Video Boyutu */
video {
    width: 384px;
    height: 240px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Projeler Başlığı */
.projects-title {
    font-family: "Dancing Script", cursive;
    color: #e3342f;
    font-size: 3rem;
}

/* Proje Kartı */
.project-card {
    text-align: center;
}
.project-image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 300px;
    height: 360px;
}
.project-image-container::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 1px solid white;
    box-sizing: border-box;
    pointer-events: none;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location {
    font-size: 18px;
    color: #b10e0e;
    font-weight: bold;
    margin-top: 10px;
}
.title {
    font-size: 16px;
    color: #333;
}

/* Slideshow Konteyner */
.slideshow-container {
    position: relative;
    width: 100vw;
    max-width:100%;
    height: 100vh;
    overflow: hidden;
}

/* Slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active {
    opacity: 1;
}

/* Dots (Göstergeler) */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}
.dot {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    overflow: hidden;
}
.dot .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 30s linear;
}
.dot.active .fill {
    transform: scaleX(1);
}

/* Ortadaki Yazılar */
.text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}
.header-title {
    font-size: 5rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.header-subtitle {
    font-size: 2rem;
    font-family: "Dancing Script", cursive;
}
.buttons {
    margin-top: 20px;
}
.button {
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: white;
    color: black;
}

/* Hizmetlerimiz Bölümü */
#hizmetlerimiz {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#hizmetlerimiz h2 {
    font-family: "Poppins", sans-serif;
}
#hizmetlerimiz h3 {
    font-family: "Dancing Script", cursive;
    color: #e3342f;
}
#hizmetlerimiz p {
    color: #333;
}

.icon i {
    color: #333;
}

/* Mobile Menu Animation */
#mobile-menu.open {
    transform: translateX(0);
}

/* Desktop Language Switcher Positioning */
#translate-en-desktop, #translate-tr-desktop {
    margin-top: 4px;
}

/* Mobile Menu Styling */
#mobile-menu nav {
    padding-top: 20px;
}

#mobile-menu p {
    font-weight: 600;
    color: #ccc;
}