/* 'ROBOTIK KODLAMA' PAGE - PREMIUM TECH DESIGN */
/* Consistent with other pages but with a tech/modern twist */

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 0, 70, 0.7), rgba(100, 0, 100, 0.65)),
        url('../image/robotik_bg.png') center/cover no-repeat fixed;
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-bottom: -60px;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(106, 48, 147, 0.5);
    animation: fadeInDown 1s ease-out;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.divider {
    height: 4px;
    width: 80px;
    margin: 20px auto 30px;
    border-radius: 2px;
    background: linear-gradient(90deg, #9b59b6, #3498db);
}

/* 2. PROGRAM DETAILS SECTION */
.robotics-section {
    background-color: #f8f9fa;
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4a148c;
    /* Deep Purple */
    margin-bottom: 15px;
}

.section-header .lead {
    font-size: 1.2rem;
    color: #6c757d;
}

/* 3. CONTENT & HIGHLIGHTS */
.robotics-content-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 5px solid #9b59b6;
}

.robotics-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.robotics-content-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.highlight-box i {
    font-size: 2rem;
    color: #8e44ad;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: #4a148c;
    font-size: 1rem;
}

/* 4. IMAGES */
.robotics-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 400px;
    position: relative;
}

.robotics-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.robotics-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Tech Overlay Badge */
.tech-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.tech-badge i {
    color: #8e44ad;
    font-size: 1.2rem;
}

.tech-badge span {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
}


/* 5. BENEFITS CARDS */
.benefits-grid {
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.15);
    border-color: #9b59b6;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9b59b6, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.benefit-card h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .robotics-image-wrapper {
        min-height: 300px;
    }
}