/* Section */
.about-section {
    padding: 80px 0;
    top: 100px;
}

/* Glass Card */
.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Image */
.about-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: 0.4s ease;
    aspect-ratio: 4/5;
}

.about-img:hover {
    transform: scale(1.03);
}

/* Heading */
.about-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-subtitle {
    color: #bbb;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Text */
.about-text {
    color: #aaa;
    line-height: 1.7;
}

/* Social Icons */
.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #888;
    transform: translateY(-3px);
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media(max-width: 768px) {
    .about-title {
        font-size: 30px;
    }
}

/* Section */
.journey-section {
    padding: 80px 0;
    background: transparent;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
}

.section-subtitle {
    color: #aaa;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* Dot */
.timeline-dot {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
}

/* Card */
.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.timeline-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.timeline-card h5 {
    margin-bottom: 5px;
}

.timeline-card small {
    color: #888;
}

.timeline-card p {
    color: #aaa;
    margin-top: 10px;
}

/* Animation (reuse if already added) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media(max-width:768px) {
    .section-title {
        font-size: 28px;
    }
}





.achievements-section {
    padding: 80px 0;
        font-family: 'Supreme', sans-serif;
}

.ach-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.ach-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.ach-card h3 {
    font-size: 32px;
    font-weight: 700;
}

.ach-card p {
    color: #aaa;
}









.highlight-section {
    padding: 80px 0;
        font-family: 'Supreme', sans-serif;
}

/* Card */
.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover effect */
.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Title */
.highlight-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* List */
.highlight-card ul {
    padding-left: 18px;
}

.highlight-card ul li {
    color: #bbb;
    margin-bottom: 8px;
    font-size: 14.5px;
}

/* Section title */
.section-title {
    font-size: 38px;
    font-weight: 700;
}

.section-subtitle {
    color: #aaa;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


.skills-section {
    padding: 80px 0;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-card p {
    color: #aaa;
}



.mission-section {
    padding: 80px 0;
    font-family: 'Supreme', sans-serif;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.mission-card p {
    color: #aaa;
}