/* Hizmetler Hero Section */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/etkinlikler/Pi Teknik Sunum.pdf-image-050.png');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.services-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}
h2{
    text-align: center;
}
/* Custom font for the heading */
.services-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #0097d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 151, 212, 0.5);
    line-height: 1.2;
    padding: 10px 30px;
    display: inline-block;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
    background-color: var(--background-light);
    position: relative;
}

.services-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-detail-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail-item:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 151, 212, 0.2);
}

.service-detail-image {
    height: 100%;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    color: var(--text-light);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-content ul li {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: #0097d4;
}

/* Special Services Section */
.special-services-section {
    padding: 80px 0;
    background-color: var(--background-gray);
    position: relative;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.special-service-item {
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.special-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 151, 212, 0.2);
}

.special-service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 151, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.special-service-icon i {
    font-size: 32px;
    color: #0097d4;
    transition: transform 0.4s ease;
}

.special-service-item:hover .special-service-icon {
    background-color: #0097d4;
}

.special-service-item:hover .special-service-icon i {
    color: #fff;
    transform: scale(1.1);
}

.special-service-item h3 {
    color: var(--text-light);
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0 15px;
}

.special-service-item p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--background-light);
    position: relative;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.why-us-text {
    color: #ccc;
}

.why-us-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.why-us-list li {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.why-us-list li i {
    color: #0097d4;
    margin-right: 10px;
    font-size: 18px;
}

.why-us-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-detail-item,
    .service-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item:nth-child(even) .service-detail-image {
        order: 0;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .why-us-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-heading {
        font-size: 3.5rem;
    }
    
    .service-detail-content {
        padding: 30px;
    }
    
    .special-services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-heading {
        font-size: 2.5rem;
        padding: 10px 15px;
    }
    
    .services-hero {
        height: 40vh;
    }
    
    .service-detail-image {
        height: 200px;
    }
} 