body {
    margin: 0;
    font-family: 'Salesforce Sans', sans-serif;
    background: #f4f6f9;
    color: #1e1e1e;
    position: relative;
    overflow-x: hidden;
}

@keyframes float {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Navigation */
.nav-container {
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    padding: 15px 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

.nav-links {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

header {
    background: linear-gradient(180deg, #00a1e0 0%, #0176d3 100%);
    color: white;
    text-align: center;
    padding: 70px 25px 25px;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 2.5rem;
    margin: 10px 0 5px;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

section {
    max-width: 900px;
    margin: 35px auto;
    padding: 0 20px;
}

h2 {
    color: #0176d3;
    border-left: 5px solid #00a1e0;
    padding-left: 10px;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 55%;
}

.about-photo {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
}

.about-photo img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid white;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-photo img:hover {
    transform: scale(1.02);
}

.resume-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #00a1e0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resume-button:hover {
    background: #0176d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.resume-button img {
    width: 20px;
    height: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Sections with Mascots */
.section-with-mascot {
    position: relative;
    padding: 40px 0;
}

.mascot-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}

.mascot-left .mascot-container {
    left: -140px;
}

.mascot-right .mascot-container {
    right: -140px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.mascot {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mascot:hover {
    transform: translateY(-10px) rotate(5deg);
}

@media (max-width: 1200px) {
    .mascot-container {
        position: relative;
        top: auto;
        transform: none;
        margin: 40px auto;
        text-align: center;
    }

    .mascot-left .mascot-container,
    .mascot-right .mascot-container {
        left: auto;
        right: auto;
    }
}

/* Achievements & Projects */
.achievements, .projects, .skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.achievement, .project, .skill {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.skill h3 {
    margin: 0 0 10px;
    color: #032d60;
    font-size: 1.1rem;
}

.skill p {
    margin: 0;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.4;
}

.achievement {
    text-align: center;
}

.achievement img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.project h3 {
    margin-top: 0;
    color: #032d60;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    color: #0176d3;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

footer {
    background: #032d60;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.contact-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease;
}

.contact-icons img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-photo {
        order: -1;
        margin-bottom: 20px;
    }

    .about-text {
        margin-top: 20px;
        text-align: start;
    }

    .section-with-mascot {
        position: relative;
        padding: 0;
    }
}