/* General Styles */
:root {
    --primary-color: #1C2C40; /* Lacivert tona yakın ama biraz açık */
    --secondary-color: #2E2E2E; /* Paragraf metinleri */
    --text-color:  #1B2A4A;
    --accent-color: #2A4365; /* Vurgu rengi - koyu lacivert */
    --accent-hover: #1A365D; /* Hover için daha koyu ton */
    --background-light: #FFFFFF;
    --background-lighter: #F7F7F7;
    --background-lightest: #FAFAFA;
    --section-bg: #E2E8F0; /* Açık gri-lacivert */
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--background-lighter);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-section video,
.hero-section .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(28, 44, 64, 0.75),  /* Lacivert ton, biraz daha transparan */
        rgba(28, 44, 64, 0.55)   /* Sağa doğru daha transparan */
    );
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 44, 64, 0.2),
        rgba(28, 44, 64, 0.6)
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1,
.hero-content p {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-weight: 700;
}

.hero-content p {
    opacity: 0.95;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Section Styles */
.section-title {
    color: #1B2A4A;  /* Lacivert renk */
    font-size: 2.5rem;
    font-weight: 600;
}


.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(28, 44, 64, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(28, 44, 64, 0.15);
}

.service-card i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.project-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .project-details {
    text-align: center;
    color: white;
    padding: 1rem;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(28, 44, 64, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(28, 44, 64, 0.15);
}

.feature-card i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-image img {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Team Section */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.team-info h4 {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section */
.cta-section {
    background: var(--accent-color);
    color: white;
    padding: 4rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section .btn-light {
    background: white;
    color: var(--accent-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: var(--secondary-color);
    color: white;
}

/* Buttons */
.btn {
    position: relative;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--accent-color);
}

.btn-light:hover {
    background-color: var(--background-lightest);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    width: 100%;
    background: transparent !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-toggler {
    background-color: transparent !important;
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand img {
    width: 300px;
    height: 150px; /* burada istediğin değeri kullanabilirsin */
    object-fit: contain; /* taşmayı engeller */
}


.nav-link {
    font-weight: 500;
    color: #f8f9fa !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: none;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .dropdown-menu {
        background: white;
        border: none;
        box-shadow: none;
    }
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mega-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-column {
    padding: 0 2rem;
}

.mega-menu-column h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mega-menu-list a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.mega-menu-list i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        background: white;
        padding: 1rem 0;
    }
    
    .nav-link {
        color: var(--secondary-color) !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-card {
        margin-bottom: 2rem;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mission Section */
.mission-section {
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mission-images {
    position: relative;
    padding-top: 2rem;
    padding-right: 2rem;
}

.image-top {
    position: relative;
    z-index: 2;
}

.image-bottom {
    position: absolute !important;
    top: 0;
    right: 0;
    width: 80%;
    z-index: 1;
    transform: translateY(25%) translateX(15%);
}

.mission-content {
    position: relative;
    z-index: 3;
}

.mission-content h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

.mission-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mission-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .mission-images {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 1rem;
    }
    
    .image-bottom {
        width: 70%;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .nav-link {
        color: var(--secondary-color) !important;
        text-shadow: none;
    }

    .navbar-toggler {
        padding: 0.5rem;
        border-radius: 4px;
    }
}

/* Add this at the end of your CSS file */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Dropdown Menu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 1rem;
    }
    
    .dropdown-submenu > a:after {
        border-left: none;
        border-right: 5px solid #ccc;
        margin-right: 0;
        margin-left: -10px;
    }
}

/* Hizmetler Slider Styles */
.services-slider {
    background-color: #f8f9fa;
}

.service-scroll {
    -ms-overflow-style: none;  /* IE ve Edge için scrollbar'ı gizle */
    scrollbar-width: none;     /* Firefox için scrollbar'ı gizle */
    position: relative;
}

.service-scroll::-webkit-scrollbar {
    display: none;  /* Chrome, Safari ve Opera için scrollbar'ı gizle */
}

.service-box {
    width: 280px;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
}

.service-content h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.scroll-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-button {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    pointer-events: auto;
}

.scroll-button:hover {
    background: white;
}

.scroll-button.prev {
    left: 10px;
}

.scroll-button.next {
    right: 10px;
}

.scroll-button i {
    color: #333;
    font-size: 1.2rem;
}

/* Neden Bizi Seçmelisiniz? Section Styles */
.why-choose-us {
    background-color: var(--section-bg);
    overflow: hidden; /* Animasyon taşmasını önlemek için */
}

.feature-card {
    position: relative;
    border-radius: 1rem;
    background-color: var(--background-light);
    transition: all 0.3s ease;
    overflow: visible; /* İkonların dışarı çıkabilmesi için */
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    min-width: 24px;
    padding-top: 5px;
    opacity: 0;
    transform: translateX(-50px);
    animation: none; /* Başlangıçta animasyon yok */
}

.feature-icon i {
    font-size: 20px; /* İkon boyutu küçültüldü */
    transition: transform 0.3s ease;
}

/* İkon renklerini koruyalım */
.feature-icon i.fa-medal { color: #e84393 !important; }
.feature-icon i.fa-handshake { color: #0984e3 !important; }
.feature-icon i.fa-recycle { color: #00b894 !important; }
.feature-icon i.fa-clock { color: #fdcb6e !important; }
.feature-icon i.fa-shield-alt { color: #6c5ce7 !important; }
.feature-icon i.fa-users { color: #ff7675 !important; }

.feature-card:hover .feature-icon {
    animation: slideIconIn 0.5s forwards;
}

.feature-title h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    transition: color 0.3s ease;
}

.feature-title p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title h4 {
    color: var(--accent-color);
}

.feature-card:hover .feature-title p {
    color: #333;
}

@keyframes slideIconIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Her kart için farklı animasyon gecikmesi kaldırıldı */

/* Sayfa Başlıkları için Stil */
.page-header {
    background-color: var(--background-light);
    padding: 20px 0;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 20px;
}

.page-header h2 {
    margin: 0; /* Başlık için varsayılan margin'i kaldır */
    font-size: 2.5rem; /* Başlık boyutu */
    color: var(--secondary-color); /* Başlık rengi */
}

.page-header p {
    margin: 0; /* Alt başlık için varsayılan margin'i kaldır */
    font-size: 1.1rem; /* Alt başlık boyutu */
    color: #666; /* Alt başlık rengi */
}

.btn-contact {
    background-color: var(--accent-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-contact:hover {
    background-color: var(--accent-hover);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(28, 44, 64, 0.2);
}

.contact-arrow {
    opacity: 0;
    margin-left: 0;
    transition: all 0.3s ease;
}

.btn-contact:hover .contact-arrow {
    opacity: 1;
    margin-left: 10px;
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 991px) {
    .btn-contact {
        margin-top: 10px;
    }
}

/* Main Lobi Connetion Section */

.bottom-left-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    padding: 22px 200px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    z-index: 999; /* Öne çıkması için eklendi */
}

.bottom-left a {
    color: white;
    text-decoration: none; 
    transition: color 0.3s ease;
}

    .bottom-left a:hover {
        color: red; 
    }

.social-main-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 19px 200px;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    z-index: 999; /* Öne çıkması için eklendi */
}
.social-main-link {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .social-main-link:hover {
        color: red; 
    }

    /*
        hakkımızda sayfasındaki görseller için css düzenledim
    */
.mission-images {
    position: relative;
    height: 1000px; /* Daha fazla görsel olduğu için yüksekliği arttırdık */
}

    .mission-images img {
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* İlk iki görsel */
    .mission-images .image-top {
        width: 300px; /* Genişlik */
        height: 300px; /* Yükseklik */
        top: -5px;
        left: -100px;
        z-index: 3;
    }

    .mission-images .image-bottom {
        bottom: 150px;
        right: 150px;
        z-index: 2;
    }


    /* Yeni eklenen görseller */
    .mission-images .image-top2 {
        top: 300px; /* Daha aşağıdan başlıyor */
        left: -70px;
        z-index: 1;
    }
    .mission-images .image-top3 {
        width: 350px; /* Genişlik */
        height: 350px; /* Yükseklik */
        top: 700px; /* Daha aşağıdan başlıyor */
        left: -150px;
        z-index: 1;
    }

    .mission-images .image-bottom2 {
        width: 380px; /* Genişlik */
        height: 380px; /* Yükseklik */
        bottom: 50px;
        right: 60px;
        z-index: 0;
        border-radius: 50%; /* Tam daire */
        object-fit: cover; /* Görseli taşırmadan içeride göster */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* İstersen gölge */
    }










.mission-image-wrapper {
    position: relative;
    height: 600px; /* Artık sabitleyelim */
}

.mission-image {
    position: absolute;
    width: 45%; /* Biraz küçültebilirsin istersen */
}

    /* 1. resim */
    .mission-image:nth-child(1) {
        top: 0;
        left: 10%;
        transform: translate(55%,0%);
        z-index: 4;
    }

    /* 2. resim */
    .mission-image:nth-child(2) {
        top: 10%;
        left: 50%;
        transform: translate(-160%,0%);
        z-index: 3;
    }

    /* 3. resim */
    .mission-image:nth-child(3) {
        top: 50%;
        left: 10%;
        transform: translate(100%, -50%);
        z-index: 2;
    }

    /* 4. resim */
    .mission-image:nth-child(4) {
        top: 60%;
        left: 50%;
        transform: translate(-100%, -50%);
        z-index: 1;
    }




.contact-header {
    background-image: url('/Images/GzlYrt.jpg');
    background-size:auto;
    background-position: top;
    height: 400px;
    position: relative;
    overflow: hidden;
}

    .contact-header .overlay {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( to right, rgba(28, 44, 64, 0.75), rgba(28, 44, 64, 0.55) );
        z-index: 1;
    }
