/* Section */
.about-section {
    padding: 20px;
    background-color: #0A1628;
    color: white;
}

/* Container */
.about-container {
    max-width: 1260px;
    margin: auto;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 50px;
    font-weight: bold;
}

.line {
    width: 100px;
    height: 4px;
    background: #3B82F6;
    margin: 10px auto;
    border-radius: 5px;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;;
    align-items: center;
}

/* Image */
.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 320px;
    height: 400px;
    border-radius: 5%;
    border: 5px solid rgba(59,130,246,0.3);
    object-fit: cover;
}

/* Content */

.about-content h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.job-title {
    font-size: 25px;
    color: #3B82F6;
    margin-bottom: 20px;
}

.about-text {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Education Box */
.education {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
}

.education h3 {
    margin-bottom: 10px;
}

.school {
    color: #3B82F6;
}

.year {
    font-size: 14px;
    color: gray;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}