/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/etkinlikler/Pi Teknik Sunum.pdf-image-031.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.about-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* Custom font for the heading */
.about-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 20px rgba(0, 151, 212, 0.3);
    line-height: 1.2;
    padding: 10px 30px;
    display: inline-block;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #121212;
    color: #e0e0e0;
}

.about-grid {
  
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #bdbdbd;
    font-size: 16px;
}

.about-text p strong {
    color: #0097d4;
}

/* Logo styles instead of image */
.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-logo img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    filter: drop-shadow(0 10px 20px rgba(0, 151, 212, 0.3));
    transition: transform 0.5s ease;
}

.about-logo:hover img {
    transform: scale(1.05);
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/etkinlikler/Pi Teknik Sunum.pdf-image-026.png') no-repeat center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

/* Fixed title styling for experience section */
.dark-title {
    color: #ffffff !important;
    text-align: center;
    font-weight: 600;
}

.section-title {
    color: #ffffff !important;
}

.experience-divider {
    height: 3px;
    width: 180px;
    background: #0097d4;
    margin: 0 auto 50px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 151, 212, 0.5);
}

.experience-divider:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 50px;
    background: #333;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.experience-item {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: #0097d4;
    transition: height 0.4s ease;
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-item:hover::before {
    height: 100%;
}

.experience-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 151, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.experience-icon i {
    font-size: 30px;
    color: #0097d4;
    transition: all 0.3s ease;
}

.experience-item:hover .experience-icon {
    background-color: #0097d4;
}

.experience-item:hover .experience-icon i {
    color: #fff;
}

.experience-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.experience-item p {
    font-size: 15px;
    color: #bdbdbd;
    line-height: 1.6;
}

.experience-item:hover h3 {
    color: #0097d4;
}

/* Contact Section */
.contact {
    background-color: #121212;
    color: #e0e0e0;
}

.contact-form {
    background-color: #252525;
}

.contact-form input,
.contact-form textarea {
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #444;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-info-item {
    background-color: #252525;
}

.contact-info-item h3 {
    color: #e0e0e0;
}

.contact-info-item p {
    color: #bdbdbd;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-logo {
        order: -1;  /* Show logo first on mobile */
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }
    
    .about-heading {
        font-size: 3.5rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .experience-item {
        padding: 25px 20px;
    }
    
    .experience-icon {
        width: 60px;
        height: 60px;
    }
    
    .experience-icon i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .about-logo img {
        max-height: 350px;
    }
}
  