﻿body {
    background-image: radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(40, 167, 69, 0.03) 0%, transparent 50%), linear-gradient(45deg, transparent 40%, rgba(255, 193, 7, 0.02) 50%, transparent 60%);
    background-size: 300px 300px, 400px 400px, 200px 200px;
    background-position: 0 0, 100px 100px, 50px 50px;
    background-attachment: fixed;
}

/* Gear Background Pattern */
.gear-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
}

    .gear-pattern::before {
        content: '⚙';
        position: absolute;
        font-size: 100px;
        color: #007bff;
        top: 10%;
        left: 5%;
        animation: rotate 20s linear infinite;
    }

    .gear-pattern::after {
        content: '⚙';
        position: absolute;
        font-size: 80px;
        color: #28a745;
        top: 60%;
        right: 10%;
        animation: rotate 15s linear infinite reverse;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}





/* Section Backgrounds */
.about-area {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

    .about-area:nth-child(even) {
        background: rgba(248, 249, 250, 0.95);
    }

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background: linear-gradient(to bottom, #002340, #036b9e);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(0, 35, 64, 0.3);
    }

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 30px;
}

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    .timeline-content:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(3, 107, 158, 0.5);
    }

.timeline-gear {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #002340, #036b9e);
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 35, 64, 0.3);
}

    .timeline-gear i {
        font-size: 24px;
        animation: gearRotate 4s linear infinite;
        color: #ffffff;
    }

    .timeline-gear .year {
        font-weight: bold;
        font-size: 20px;
        color: white;
        margin: 0;
    }

.timeline-content h4 {
    margin-bottom: 15px;
    color: #002340;
    font-size: 22px;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

@keyframes gearRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

        .timeline-item:nth-child(even) {
            left: 0%;
        }

    .timeline-content {
        padding: 25px;
    }

    .timeline-gear {
        padding: 12px;
    }

        .timeline-gear i {
            font-size: 20px;
        }

        .timeline-gear .year {
            font-size: 18px;
        }
}

/* CTA Area Styles */
.cta-area {
    position: relative;
    background: linear-gradient(135deg, #0080b8 0%, #005a8b 100%);
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    animation: gearRotate 8s linear infinite;
}

    .cta-gear i {
        font-size: 80px;
    }

.cta-gear-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.cta-gear-2 {
    bottom: -15px;
    left: -15px;
    animation-delay: 2s;
}

.cta-gear-3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.cta-gear-4 {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

.cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

@keyframes gearRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #0080b8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}

    .cta-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        color: #005a8b;
        text-decoration: none;
    }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

    .cta-btn-secondary:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .cta-btn-primary i,
    .cta-btn-secondary i {
        transition: transform 0.3s ease;
    }

    .cta-btn-primary:hover i,
    .cta-btn-secondary:hover i {
        transform: translateX(5px);
    }

/* Company Values Hover Effect */
.service__item .title:hover {
    color: white !important;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gear-pattern::before,
    .gear-pattern::after {
        font-size: 60px;
    }

    .cta-title {
        font-size: 2rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ik */

.cta-area {
    position: relative;
    background: linear-gradient(135deg, #0080b8 0%, #005a8b 100%);
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    animation: gearRotate 8s linear infinite;
}

    .cta-gear i {
        font-size: 80px;
    }

.cta-gear-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.cta-gear-2 {
    bottom: -15px;
    left: -15px;
    animation-delay: 2s;
}

.cta-gear-3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.cta-gear-4 {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

.cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

@keyframes gearRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #0080b8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}

    .cta-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        color: #005a8b;
        text-decoration: none;
    }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

    .cta-btn-secondary:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .cta-btn-primary i,
    .cta-btn-secondary i {
        transition: transform 0.3s ease;
    }

    .cta-btn-primary:hover i,
    .cta-btn-secondary:hover i {
        transform: translateX(5px);
    }

/* Form Styles */
.contact__form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: white;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0080b8;
            box-shadow: 0 0 0 3px rgba(0, 128, 184, 0.1);
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-group input[type="file"] {
        padding: 10px;
        border: 2px dashed #0080b8;
        background: rgba(0, 128, 184, 0.05);
    }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    margin-top: 3px;
}

.form-check-label {
    font-size: 14px;
    line-height: 1.5;
}

/* Team Section Text Colors */
.team__item h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 10px;
}

    .team__item h4 a {
        color: #ffffff !important;
        text-decoration: none;
    }

.team__item span {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team__item p {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact__form {
        padding: 40px 25px;
    }
}

.sidebar__language {
    position: relative;
    z-index: 1050; /* Overlay'den daha yüksek olmalı */
}
.sidebar__overlay {
    z-index: 1000;
    /* Eğer overlay sadece arka planı kapatmak içinse: */
    pointer-events: none;
}
.offer__item .offer__icon svg {
    width: 36px;
    height: 36px;
}

.offer__item .offer__icon svg path {
    fill: #3c72fc;
}