@font-face {
    font-family: Solway;
    src: url(./font/solway-77ad0ad9.woff2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Solway;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2b2b2b;
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulance type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
}

.first-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.updated-text {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

.big-title {
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 900;
    color: #d4d4d4;
    letter-spacing: -8px;
    line-height: 1;
    text-transform: uppercase;
}

.orange-year {
    position: absolute;
    top: 35%;
    right: 15%;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 10px 28px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 6px;
}

.left-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.right-bottom {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.gray-text {
    font-size: 14px;
    color: #888888;
}

.second-page {
    width: 100%;
    min-height: 30vh;
    padding: 60px 40px;
    position: relative;
}

.bottom-info {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left {
    flex: 1;
}

.red-name {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-text {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.description-text {
    color: #888888;
    font-size: 13px;
    line-height: 1.8;
}

.info-right {
    text-align: right;
}

.tiny-text {
    font-size: 11px;
    color: #666666;
    margin-bottom: 4px;
}

.copyright-text {
    font-size: 12px;
    color: #888888;
    margin-top: 8px;
}

.third-page {
    width: 100%;
    padding: 80px 40px;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.photo-side {
    flex: 0 0 340px;
}

.profile-pic {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.text-side {
    flex: 1;
    padding-top: 20px;
}

.hello-heading {
    font-size: 90px;
    font-weight: 900;
    color: #d4d4d4;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
}

.orange-dot {
    font-size: 120px;
    color: #ff6b35;
}

.bio-paragraph {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.button-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.button-row i{
    font-size: 25px;
}
.orange-button {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.orange-button:hover {
    background-color: #e55a28;
}

.outline-button {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.link-button {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.orange-button2 {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.orange-button2:hover {
    background-color: #e55a28;
}

.three-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-box {
    background-color: rgba(60, 60, 60, 0.4);
    padding: 35px;
    border-radius: 12px;
}

.column-heading {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.software-heading {
    margin-top: 40px;
}

.language-heading {
    margin-top: 35px;
}

.education-info {
    margin-bottom: 40px;
}

.uni-name {
    color: #dddddd;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;

}

.degree-name {
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.software-item {
    display: flex;
    flex-direction: column;
}

.app-icon {
    height: 55px;
    background-color: #3a3a3a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 100;
    border-radius: 6px;
    margin-bottom: 12px;
}

.app-name {
    font-size: 13px;
    color: #dddddd;
    margin-bottom: 4px;
    font-weight: 500;
}

.app-desc {
    font-size: 11px;
    color: #888888;
}

.experience-list {
    position: relative;
}

.experience-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #555555;
}

.job-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}

.year-dot {
    width: 32px;
    height: 32px;
    background-color: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.job-details {
    padding-top: 5px;
}

.company-name {
    font-size: 14px;
    color: #dddddd;
    margin-bottom: 5px;
    font-weight: 500;
}

.role-name {
    font-size: 12px;
    color: #888888;
}

.skills-list {
    list-style: none;
    margin-bottom: 35px;
}

.skill-point {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.skill-point::before {
    content: '-';
    position: absolute;
    left: 0;
}

.language-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-item {
    font-size: 13px;
    color: #cccccc;
}

@media screen and (max-width: 1200px) {
    .three-columns {
        grid-template-columns: 1fr;
    }
    
    .orange-year {
        right: 10%;
    }
}

@media screen and (max-width: 992px) {
    .main-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .photo-side {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .big-title {
        font-size: 100px;
    }
    
    .hello-heading {
        font-size: 80px;
    }
}

@media screen and (max-width: 768px) {
    .first-page,
    .second-page,
    .third-page {
        padding: 30px 20px;
    }
    
    .updated-text,
    .left-bottom,
    .right-bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: 20px;
    }
    
    .big-title {
        font-size: 70px;
        letter-spacing: -4px;
    }
    
    .orange-year {
        top: 200px;
        right: 100px;
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .bottom-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-right {
        text-align: left;
    }
    
    .hello-heading {
        font-size: 60px;
    }
    
    .button-row,
    .button-row2 {
        flex-direction: column;
        align-items: center;
    }
    
    .orange-button,
    .outline-button,
    .orange-button2 {
        width: 100%;
        text-align: center;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .column-box {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .big-title {
        font-size: 50px;
        letter-spacing: -2px;
    }
    
    .hello-heading {
        font-size: 40px;
    }
    
    .bio-paragraph {
        font-size: 13px;
    }
}