.gradient-bg {
            background: linear-gradient(135deg, #0A2342 0%, #008080 100%);
        }
.section-padding {
            padding: 6rem 1rem;
        }
        .section-visual {
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 24px 50px rgba(10, 35, 66, 0.12);
        }
        .section-visual img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        .info-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            border-radius: 999px;
            background: rgba(10, 35, 66, 0.06);
            color: #0A2342;
            font-weight: 600;
        }
        .contact-visual-shell {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.16);
        }
        .skill-badge {
            transition: all 0.3s ease;
        }
        .skill-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .experience-card {
            transition: all 0.3s ease;
        }
        .experience-card:hover {
            transform: translateY(-5px);
        }
        .profile-frame {
            border: 5px solid rgba(99, 102, 241, 0.2);
            box-shadow: 0 20px 45px rgba(10, 35, 66, 0.22);
        }
        .profile-img {
            display: block;
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }